Files
Nim/tests/method/tsimmeth.nim
2014-01-13 02:10:03 +01:00

15 lines
176 B
Nim

discard """
file: "tsimmeth.nim"
output: "HELLO WORLD!"
"""
# Test method simulation
import strutils
var x = "hello world!".toLower.toUpper
x.echo()
#OUT HELLO WORLD!