diff options
author | Araq <rumpf_a@web.de> | 2012-11-30 19:57:23 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2012-11-30 19:57:23 +0100 |
commit | f503439e811d822f19daa9591cb3bd9e90edabe7 (patch) | |
tree | a023fbae103424bb85b16d1c4a9ac6ce2394f828 /tests | |
parent | 92e10e4b182f4b106db79f4be228e19b2720d043 (diff) | |
download | Nim-f503439e811d822f19daa9591cb3bd9e90edabe7.tar.gz |
implements 'import dir/module' without quotes
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/compile/twalker.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compile/twalker.nim b/tests/compile/twalker.nim index 3fdd8769b..89e6c2b9d 100755 --- a/tests/compile/twalker.nim +++ b/tests/compile/twalker.nim @@ -1,7 +1,7 @@ # iterate over all files with a given filter: import - os, times + "../../lib/pure/os.nim", ../../ lib / pure / times proc main(filter: string) = for filename in walkFiles(filter): |