summary refs log tree commit diff stats
path: root/tests/accept/run/tsimmeth.nim
blob: c6dbf69bbbd58c3cec7f075324d01f06b5883f01 (plain) (blame)
1
2
3
4
5
6
7
8
# Test method simulation

import strutils

var x = "hello world!".toLower.toUpper
x.echo()
#OUT HELLO WORLD!