diff options
author | patrick dw <algorithicimperative@gmail.com> | 2015-06-19 01:34:34 -0500 |
---|---|---|
committer | patrick dw <algorithicimperative@gmail.com> | 2015-06-19 01:34:34 -0500 |
commit | 69e15ac32fd92abe1d950275ab4b0d830d8b13e1 (patch) | |
tree | 5075b3b8a5ab2458a3bd23a652c31419c41bba32 /tests/ambsym | |
parent | b6252af5c6ce99c6eaec91fb5570143151660b74 (diff) | |
download | Nim-69e15ac32fd92abe1d950275ab4b0d830d8b13e1.tar.gz |
renamed writeln to writeLine in tests
Diffstat (limited to 'tests/ambsym')
-rw-r--r-- | tests/ambsym/tambsym2.nim | 4 | ||||
-rw-r--r-- | tests/ambsym/tambsym3.nim | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/ambsym/tambsym2.nim b/tests/ambsym/tambsym2.nim index 745427c54..c3b997549 100644 --- a/tests/ambsym/tambsym2.nim +++ b/tests/ambsym/tambsym2.nim @@ -11,8 +11,8 @@ type proc len(x: TMyType): int {.inline.} = return x.len -proc x(s: TMyType, len: int) = - writeln(stdout, len(s)) +proc x(s: TMyType, len: int) = + writeLine(stdout, len(s)) var m: TMyType diff --git a/tests/ambsym/tambsym3.nim b/tests/ambsym/tambsym3.nim index 0155f258c..ed8a3058a 100644 --- a/tests/ambsym/tambsym3.nim +++ b/tests/ambsym/tambsym3.nim @@ -10,6 +10,6 @@ import mambsym1, times var v = mDec #ERROR_MSG ambiguous identifier -writeln(stdout, ord(v)) +writeLine(stdout, ord(v)) |