RosettaCodeData/Task/Assertions/FreeBASIC/assertions.freebasic
2016-12-05 23:44:36 +01:00

8 lines
149 B
Text

' FB 1.05.0 Win64
' requires compilation with -g switch
Dim a As Integer = 5
Assert(a = 6)
'The rest of the code will not be executed
Print a
Sleep