Created
November 9, 2015 13:15
-
-
Save fikovnik/c6c9137095242821123a to your computer and use it in GitHub Desktop.
BI-OMO lab 6 exercise 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | nand func | | |
| nand := [ :x :y | (x & y) not ]. | |
| func := [ :x :y | | |
| "TODO: func" | |
| ]. | |
| Transcript cr; | |
| show: 'x'; | |
| tab; | |
| show: 'y'; | |
| tab; | |
| show: 'func'; | |
| cr. | |
| #(true false) do: [ :x | | |
| #(true false) do: [ :y | | |
| "TODO: vypis x,y,func" | |
| "e.g. 0 0 1" | |
| Transcript cr. | |
| ]]. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment