mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 12:07:51 +00:00
14 lines
147 B
Nim
14 lines
147 B
Nim
discard """
|
|
output: "234"
|
|
"""
|
|
|
|
# bug #4432
|
|
|
|
import strutils
|
|
|
|
converter toInt(s: string): int =
|
|
result = parseInt(s)
|
|
|
|
let x = (int)"234"
|
|
echo x
|