12 lines
297 B
Text
12 lines
297 B
Text
|
|
print ("a is "||a);
|
||
|
|
type(a, integer);
|
||
|
|
a := "Hello World":
|
||
|
|
print ("a is "||a);
|
||
|
|
type(a, integer);
|
||
|
|
type(a, string);
|
||
|
|
"a is 4"
|
||
|
|
true
|
||
|
|
"a is Hello World"
|
||
|
|
false
|
||
|
|
true
|