index
:
Nim
this commit
devel
This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)
ahoang <ahoang@tilde.institute>
summary
refs
log
blame
commit
diff
stats
log msg
author
committer
range
path:
root
/
tests
/
tuples
/
mnimsconstunpack.nim
blob: 65fafc12f83adab82e1c884ab97188aa0b662645 (
plain
) (
tree
)
2315b01ae
^
1
2
3
4
proc
foo
():
tuple
[
a
,
b
:
string
]
=
result
=
(
"a"
,
"b"
)
const
(
a
,
b
*
)
=
foo
()