RosettaCodeData/Task/Conditional-structures/Modula-3/conditional-structures-4.mod3
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
141 B
Text

TYPECASE ref OF
| NULL => IO.Put("Null\n");
| CHAR => IO.Put("Char\n");
| INTEGER => IO.Put("Integer\n");
ELSE
IO.Put("Something\n");
END;