RosettaCodeData/Task/Conditional-structures/Red/conditional-structures-4.red
2018-06-22 20:57:24 +00:00

17 lines
298 B
Text

switch "india" [
"a" [print "string"]
23 [print "integer"]
"India" [print "The country India"]
]
The country India
switch/default "U.S." [
"a" [print "string"]
23 [print "integer"]
"India" [print "The country India"]
][
print "no match"
]
no match