flowgrammable / steve-legacy

The Steve programming language
Apache License 2.0
4 stars 0 forks source link

Imports and overloading #16

Open asutton opened 9 years ago

asutton commented 9 years ago

Imports currently use the declare() facility to register their ids, currently make this ill-formed:

import std;
import std;

The error is that std is not a function. Either allow this or improve the diagnostics.