RosettaCodeData/Task/Runtime-evaluation/Ring/runtime-evaluation-4.ring

21 lines
185 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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