diff options
author | Araq <rumpf_a@web.de> | 2011-08-29 01:14:26 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-08-29 01:14:26 +0200 |
commit | 4839800c228acfe8a5867cb65aa39f6986007a02 (patch) | |
tree | a3d11d630f0b1adcee20195d6fd0c0b0cfd5a258 /lib/system.nim | |
parent | 51126779048e5a97f210b4ec31a0db118637fb3b (diff) | |
download | Nim-4839800c228acfe8a5867cb65aa39f6986007a02.tar.gz |
new actors implementation for nimrod; compiler's generics still not up for the task though
Diffstat (limited to 'lib/system.nim')
-rwxr-xr-x | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index 1d8d18e1f..2e754ece7 100755 --- a/lib/system.nim +++ b/lib/system.nim @@ -1808,7 +1808,7 @@ when not defined(EcmaScript) and not defined(NimrodVM): include "system/sysio" when hasThreadSupport: - include "system/inboxes" + include "system/channels" iterator lines*(filename: string): string = ## Iterate over any line in the file named `filename`. |