1
Ideas / Re: C2 Package system
« on: February 06, 2013, 06:32:34 PM »
Hello Bas,
I vote for . instead of ::. Most langages use . and it makes sense, you could imagine your package as an object/structure and you access member of this structure through dot.
you could do import package.func10deprecated as func10 for instance
or from package import funct10 as in python
How do you intend to handle concurrency with regards to package handling...
I vote for . instead of ::. Most langages use . and it makes sense, you could imagine your package as an object/structure and you access member of this structure through dot.
you could do import package.func10deprecated as func10 for instance
or from package import funct10 as in python
How do you intend to handle concurrency with regards to package handling...