7 lines
117 B
Text
7 lines
117 B
Text
x: 2
|
|
|
|
case x [
|
|
1 -> print "x is one!"
|
|
2 -> print "x is two!"
|
|
any -> print "x is none of the above"
|
|
]
|