Files
Nim/tests/run/tsimmeth.nim
2011-11-19 15:45:51 +01:00

15 lines
176 B
Nim
Executable File

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