main.nim 98 B

12345678
  1. import imported, strutils
  2. proc main =
  3. var t1 = "text"
  4. var t2 = t1.toUpper
  5. echo(t1 +++ t2)