9 lines
223 B
Text
9 lines
223 B
Text
|
|
' FB 1.05.0 Win64
|
||
|
|
|
||
|
|
Dim i As Integer '' initialized to 0 by default
|
||
|
|
Dim j As Integer = 3 '' initialized to 3
|
||
|
|
Dim k As Integer = Any '' left uninitialized (compiler warning but can be ignored)
|
||
|
|
|
||
|
|
Print i, j, k
|
||
|
|
Sleep
|