mirror of
https://codeberg.org/ProgramSnail/lang_2023.git
synced 2025-12-06 06:58:45 +00:00
8 lines
136 B
Text
8 lines
136 B
Text
decl test-tuples : -> \unit
|
|
def test-tuples = {
|
|
var tuple1 = & ''a & 2 & "hello"
|
|
const & t1 & t2 & t3 = f: x
|
|
|
|
; tuple1`0 = ''b
|
|
|
|
}
|