8 lines
117 B
Text
8 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"
|
||
|
|
]
|