21 lines
185 B
Text
21 lines
185 B
Text
|
|
code:> see "hello world"
|
||
|
|
hello world
|
||
|
|
code:> for x = 1 to 10 see x + nl next
|
||
|
|
1
|
||
|
|
2
|
||
|
|
3
|
||
|
|
4
|
||
|
|
5
|
||
|
|
6
|
||
|
|
7
|
||
|
|
8
|
||
|
|
9
|
||
|
|
10
|
||
|
|
|
||
|
|
code:> func test see "Hello from test" + nl
|
||
|
|
|
||
|
|
code:> test()
|
||
|
|
Hello from test
|
||
|
|
|
||
|
|
code:> bye
|