RosettaCodeData/Task/Variables/Maple/variables-5.maple

12 lines
297 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
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