summary refs log tree commit diff stats
path: root/tests/accept/run/tsimmeth.nim
blob: 11ff2674f84712c84677c73db69ab9a037152a43 (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!".toLower.toUpper
x.echo()
#OUT HELLO WORLD!