mirror of
https://github.com/egormanga/Slang.git
synced 2025-03-01 18:09:30 +03:00
7 lines
89 B
Plaintext
7 lines
89 B
Plaintext
#| Slang `tuple' test. |#
|
|
|
|
main {
|
|
tuple a = (int 1, str "test")
|
|
stdio.println(a, *a)
|
|
}
|