lama_byterun/bench/demo.lama
Kakadu b07cdebe7f Added Demo about infix
Signed-off-by: Kakadu <Kakadu@pm.me>
2020-12-11 18:06:33 +03:00

6 lines
95 B
Text

public infix +++ at + (x, y) {
case x of
{} -> y
| x : xs -> x : xs +++ y
esac
}