@@ -0,0 +1,11 @@
+'Apptitle Example
+
+SuperStrict
+AppTitle = "Just a TITLE"
+Graphics 400, 400
+Repeat
+ DrawText "Hello World", 10, 20
+ Flip
+Until AppTerminate()
@@ -0,0 +1,6 @@
+'
+' Run in debug mode to see the output
+DebugLog "My debug text"
@@ -0,0 +1,12 @@
+' Run in debug mode
+Graphics 640,480
+Local a:Int
+ a = Rnd(20)
+Until KeyDown(KEY_ESCAPE)
+DebugStop
@@ -0,0 +1,10 @@
+Print "This is a test line."
+Delay 3000
+Print "This line was printed 3000 milliseconds later."
+Print "This program will end in 2000 milliseconds."
+Delay 2000
@@ -0,0 +1,8 @@
+Local i:Int=0
+While i < 5
+ Print i
+ i :+ 1
+EndWhile 'can also use Wend
@@ -0,0 +1,9 @@
+' Use the Framework and Import functions to only include the function sets
+' that you want to use
+Framework Brl.standardio ' so we can use print
+Import Brl.random ' so we can use the Rnd Function
+Print Rnd(255)
@@ -0,0 +1,7 @@
+Local start:Int = MilliSecs()
+Input("Type Anything >")
+Print "You took "+(MilliSecs()-start)+" milliseconds to type that."