Slang/tests/tuple.sl

7 lines
89 B
Plaintext

#| Slang `tuple' test. |#
main {
tuple a = (int 1, str "test")
stdio.println(a, *a)
}