mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
15 lines
176 B
Nim
15 lines
176 B
Nim
discard """
|
|
file: "tsimmeth.nim"
|
|
output: "HELLO WORLD!"
|
|
"""
|
|
# Test method simulation
|
|
|
|
import strutils
|
|
|
|
var x = "hello world!".toLower.toUpper
|
|
x.echo()
|
|
#OUT HELLO WORLD!
|
|
|
|
|
|
|