2023-03-31 12:10:12 +03:00
|
|
|
decl test_tuples : Unit -> Unit
|
|
|
|
|
def test_tuples = {
|
|
|
|
|
var tuple1 = & "a" & 2 & "hello"
|
2023-05-07 09:25:38 +03:00
|
|
|
const & t1 & t2 & t3 = f: x
|
2023-03-31 12:10:12 +03:00
|
|
|
|
2023-05-07 09:25:38 +03:00
|
|
|
; tuple1`0 = "b"
|
|
|
|
|
|
2023-03-31 12:10:12 +03:00
|
|
|
}
|