great take on nim,

totally agree on module import method being inadequate, esp coming from python

in Nim, everything is this,

import os

which really means,

from os import *

this is fine for small projects, but if youre importing several modules in same 
file, you quickly lose track of what function is from what module, since module 
namespace is absent

that seems like a crazy way to import stuff. 

Reply via email to