monaco-editor/test/manual/samples/sample.sb.txt
2021-11-16 22:25:24 +01: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