RosettaCodeData/Task/Runtime-evaluation/Ring/runtime-evaluation-4.ring
2023-07-01 13:44:08 -04:00

20 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