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

import strutils

var x = "hallo world!".toLower.toUpper
x.echo()
#OUT HALLO WORLD!