mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 04:27:44 +00:00
9 lines
110 B
Nim
9 lines
110 B
Nim
# Test method simulation
|
|
|
|
import strutils
|
|
|
|
var x = "hallo world!".toLower.toUpper
|
|
x.echo()
|
|
#OUT HALLO WORLD!
|
|
|