tagged release 0.6.4
[parrot.git] / languages / cardinal / t / 99-other.t
blobb3ac44995fa0a3fc6a6ab8110cd9f8273a94f5c1
1 puts "1..7"
3 n = 5
5 n.downto(1) do |i|
6     puts "ok ", 6-i
7 end
9 def foo
10     return [ 9, 6, 7 ]
11 end
13 foo()[1].upto(7) { |i| puts "ok ", i }