lama_byterun/bench/demo.lama

7 lines
95 B
Text
Raw Normal View History

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