Переглянути джерело

Added test if Try-Block is possible without "catch"-part

Ronny Otto 11 роки тому
батько
коміт
d704f1b895
1 змінених файлів з 12 додано та 0 видалено
  1. 12 0
      tests/framework/language/try_01.bmx

+ 12 - 0
tests/framework/language/try_01.bmx

@@ -0,0 +1,12 @@
+Rem
+	This test checks:
+	- if try without "catch" is possible
+End Rem
+SuperStrict
+
+Import BRL.StandardIO
+
+
+Try
+	print "should get printed"
+End Try