mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 14:23:45 +00:00
11 lines
114 B
Nim
11 lines
114 B
Nim
discard """
|
|
output: '''hello'''
|
|
"""
|
|
|
|
import parseutils
|
|
|
|
var w = ""
|
|
discard parseIdent("hello world", w)
|
|
echo w
|
|
|