mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
12 lines
123 B
Nim
Executable File
12 lines
123 B
Nim
Executable File
discard """
|
|
file: "tlenopenarray.nim"
|
|
output: "1"
|
|
"""
|
|
|
|
# len(x) --> len([x]) --> match!
|
|
echo len(1_000_000) #OUT 1
|
|
|
|
|
|
|
|
|