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

12 lines
297 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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