summary refs log blame commit diff stats
path: root/tests/method/tsimmeth.nim
blob: a057c35b7f3ea79891ef28e8468fb3f3391c2e07 (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!".toLowerAscii.toUpperAscii
x.echo()
#OUT HELLO WORLD!