9 lines
218 B
Text
9 lines
218 B
Text
' FB 1.05.0 Win64
|
|
|
|
#Include "crt/stdio.bi" '' header needed for printf
|
|
|
|
Dim x As String = "big"
|
|
Print "Mary had a "; x; " lamb" '' FB's native Print statement
|
|
x = "little"
|
|
printf("Mary also had a %s lamb", x)
|
|
Sleep
|