17 lines
298 B
Text
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
|