We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement a system for importing and exporting functions from different files/modules.
A couple alternatives for a basic syntax:
from "./path/to/module" import {a, b, c}
// Very function-like import ./path/to/module(a, b, c);
// Javascript-y export func f() => ...;
// Function-like export(f); func f() => ...;
Additionally it would be somewhat nice to be able to import/export things as aliases.
(this issue is a heavy work in progress, more research should be done on how to implement a decent module system)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Implement a system for importing and exporting functions from different files/modules.
A couple alternatives for a basic syntax:
Additionally it would be somewhat nice to be able to import/export things as aliases.
(this issue is a heavy work in progress, more research should be done on how to implement a decent module system)
The text was updated successfully, but these errors were encountered: