mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
17 lines
197 B
Nim
17 lines
197 B
Nim
discard """
|
|
output: '''abc232'''
|
|
"""
|
|
|
|
var t, s: tuple[x: string, c: int]
|
|
|
|
proc ugh: seq[tuple[x: string, c: int]] =
|
|
result = @[("abc", 232)]
|
|
|
|
t = ugh()[0]
|
|
s = t
|
|
s = ugh()[0]
|
|
|
|
echo s[0], t[1]
|
|
|
|
|