RosettaCodeData/Task/Conditional-structures/Red/conditional-structures-4.red
2023-07-01 13:44:08 -04: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