diff options
Diffstat (limited to 'tests/accept/run/tsimmeth.nim')
-rwxr-xr-x | tests/accept/run/tsimmeth.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/accept/run/tsimmeth.nim b/tests/accept/run/tsimmeth.nim index 3f5f810e6..c6dbf69bb 100755 --- a/tests/accept/run/tsimmeth.nim +++ b/tests/accept/run/tsimmeth.nim @@ -2,7 +2,7 @@ import strutils -var x = "hallo world!".toLower.toUpper +var x = "hello world!".toLower.toUpper x.echo() -#OUT HALLO WORLD! +#OUT HELLO WORLD! |