mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
15 lines
186 B
Nim
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!
|
|
|
|
|
|
|