shark/test_files/times.nila in nilac-0.0.4.2.9 vs shark/test_files/times.nila in nilac-0.0.4.3.0
- old
+ new
@@ -1,5 +1,13 @@
a = 5
10.times { |n| puts "The number is #{a+n}" }
10.times {puts "Hello"}
+
+10.times do |n|
+
+ puts "The number is #{n}"
+
+ puts "Twice the number is #{2*n}"
+
+end