Slang/tests/tuple.sl

7 lines
89 B
Plaintext
Raw Permalink Normal View History

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