Files
Nim/tests/method/tsimmeth.nim
2018-04-30 02:56:19 +02:00

15 lines
186 B
Nim

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