summary refs log tree commit diff stats
path: root/tests/method/tsimmeth.nim
blob: a057c35b7f3ea79891ef28e8468fb3f3391c2e07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
discard """
  file: "tsimmeth.nim"
  output: "HELLO WORLD!"
"""
# Test method simulation

import strutils

var x = "hello world!".toLowerAscii.toUpperAscii
x.echo()
#OUT HELLO WORLD!