-
-
Notifications
You must be signed in to change notification settings - Fork 667
New issue
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
Add 'Loader' example #1247
Add 'Loader' example #1247
Conversation
I guess will be great also add 7th example which demonstrate how do something like this: class Complex {
re: f64
im: f64
};
export function getComplexMatrix(): Complex[][] {
...
} |
Initially considered making another example like "Loader Advanced", but I think you are right and I should just add it here, as there aren't a lot of advanced custom classes scenarios anyway. |
Do you think move it to |
Yeah, figured that a separate repo makes sense with increasing example count. Loader example is here: https://github.com/AssemblyScript/examples/tree/master/loader |
As promised on the Discord, I've made an example covering the very basics of utilizing the loader.
This should give everyone interested a quick start with recipes to perform the most common tasks. As usual, my perspective might be a little trees in the woods here, so let me know where I am assuming something that isn't trivial :)