mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
28 lines
519 B
Nim
28 lines
519 B
Nim
# simple check for one dimensional arrays
|
|
|
|
type
|
|
TMyArray = array[0..2, int]
|
|
TMyRecord = tuple[x, y: int]
|
|
|
|
proc sum(a: TMyarray): int =
|
|
result = 0
|
|
var i = 0
|
|
while i < len(a):
|
|
inc(result, a[i])
|
|
inc(i)
|
|
|
|
proc sum(a: openarray[int]): int =
|
|
result = 0
|
|
var i = 0
|
|
while i < len(a):
|
|
inc(result, a[i])
|
|
inc(i)
|
|
|
|
proc getPos(r: TMyRecord): int =
|
|
result = r.x + r.y
|
|
|
|
write(stdout, sum([1, 2, 3, 4]))
|
|
write(stdout, sum([]))
|
|
write(stdout, getPos( (x: 5, y: 7) ))
|
|
#OUT 10012
|