rsdn / nemerle

Nemerle language. Main repository.
http://nemerle.org
Other
622 stars 89 forks source link

Add support for project level import. #605

Open xavierzwirtz opened 10 years ago

xavierzwirtz commented 10 years ago

In Visual Basic you can specify a project level Import, which prevents you from having to import the same thing in all code files. It would be nice if Nemerle supported this.

NN--- commented 10 years ago

Can you give an example of this feature ?

xavierzwirtz commented 10 years ago

In VB.Net you can specify an Import decleration in the vbproj file. Instead of having to import System.Linq in every vb file, it is now imported by default. Import would be using in Nemerle parlance.

NN--- commented 10 years ago

Interesting feature, but actually I don't see how this is useful. You can implement it if you really need.