mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-08 05:53:22 +00:00
14 lines
212 B
Nim
14 lines
212 B
Nim
discard """
|
|
file: "tvartup.nim"
|
|
output: "2 3"
|
|
"""
|
|
# Test the new tuple unpacking
|
|
|
|
proc divmod(a, b: int): tuple[di, mo: int] =
|
|
return (a div b, a mod b)
|
|
|
|
var (x, y) = divmod(15, 6)
|
|
echo x, " ", y
|
|
|
|
#OUT 2 3
|