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
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
nimsuggest
/
tests
/
module_20265.nim
blob: 24b7d10c93985676e7252f9e2ea0731f5626a7e5 (
plain
) (
blame
)
1
2
3
4
5
6
type
A
*
=
tuple
a
:
int
b
:
int
var
x
*
:
A
=
(
a
:
2
,
b
:
10
)
var
y
*
=
(
a
:
2
,
b
:
10
)