zlacker

[parent] [thread] 0 comments
1. beagle+(OP)[view] [source] 2025-12-05 21:02:06
Do note that unlike Python’s “import * from a; import * from b” where you have no idea where a name cam from later in the code (and e.g. changes to a and b, such as new versions, will change where a name comes from), Nim requires a name to be unambiguous, so that if “b” added a function that previously only “a” had, you’ll get a compile time error.
[go to top]