mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 09:54:49 +00:00
12 lines
184 B
Nim
12 lines
184 B
Nim
import tables
|
|
|
|
type
|
|
TX = TTable[string, int]
|
|
|
|
proc foo(models: seq[TTable[string, float]]): seq[float] =
|
|
result = @[]
|
|
for model in models.items:
|
|
result.add model["foobar"]
|
|
|
|
|