monaco-editor/test/samples/sample.sb.txt
2020-09-21 12:18:52 +02:00

10 lines
No EOL
241 B
Text

begin:
TextWindow.Write("Enter a number: ")
num = TextWindow.ReadNumber()
remainder = Math.Remainder(num, 2)
If (remainder = 0) Then
TextWindow.WriteLine("The number is Even")
Else
TextWindow.WriteLine("The number is Odd")
EndIf
Goto begin