mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
8 lines
98 B
Nim
8 lines
98 B
Nim
import imported, strutils
|
|
|
|
proc main =
|
|
var t1 = "text"
|
|
var t2 = t1.toUpper
|
|
echo(t1 +++ t2)
|
|
|