Files
Nim/tests/run/tsimmeth.nim
2013-03-16 23:53:07 +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!