You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func number(lit: string): string=for b in lit:
result.add:
if b in'0'..'9': b
elif b =='_': continueelse: raise newException(ValueError, "not a valid digit")
let s = number "1_2_3"
echo s, "", s.len
Nim Version
Nim Compiler Version 1.6.14 [Windows: amd64]
Compiled at 2023-06-27
Copyright (c) 2006-2023 by Andreas Rumpf
active boot switches: -d:release