shark/test_files/operators.nila in nilac-0.0.4.2.0 vs shark/test_files/operators.nila in nilac-0.0.4.2.1
- old
+ new
@@ -1,3 +1,9 @@
a = 2**3
-puts "Correct Calculation!" if a == 8
+puts "Correct Calculation!" if a == 8
+
+line = "My favorite language is Ruby!"
+
+if line =~ /Ruby|Python/
+ puts "Scripting language mentioned: #{line}"
+end
\ No newline at end of file