9 lines
189 B
Text
9 lines
189 B
Text
|
|
' FB 1.05.0 Win64
|
||
|
|
|
||
|
|
#Include "crt/math.bi"
|
||
|
|
#Print Typeof(1.5) ' Prints DOUBLE at compile time
|
||
|
|
|
||
|
|
Dim d As Typeof(1.5) = INFINITY
|
||
|
|
Print d; " (String representation of Positive Infinity)"
|
||
|
|
Sleep
|