summary refs log blame commit diff stats
path: root/tests/method/tsimmeth.nim
blob: 11ff2674f84712c84677c73db69ab9a037152a43 (plain) (tree)
1
2
3
4
5
6
7
8
9



                        



                        
                                      
        
                 
 

 
discard """
  file: "tsimmeth.nim"
  output: "HELLO WORLD!"
"""
# Test method simulation

import strutils

var x = "hello world!".toLower.toUpper
x.echo()
#OUT HELLO WORLD!