mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
13 lines
162 B
Nim
13 lines
162 B
Nim
discard """
|
|
output: '''true
|
|
123
|
|
'''
|
|
"""
|
|
|
|
# This file tests some magic
|
|
|
|
var foo = cstring("foo")
|
|
var bar = cstring("foo")
|
|
echo(foo == bar)
|
|
echo "01234"[1 .. ^2]
|