Conversation
Contributor
|
Do you want to execute that from |
…nterpeter logging for app/make all
Contributor
Author
|
Done. Also added a simple README and sample output. |
nomeata
approved these changes
Mar 4, 2019
dfinity-bot
added a commit
that referenced
this pull request
Jan 14, 2021
## Changelog for motoko-base: Branch: next-moc Commits: [caffeinelabs/motoko-base@65855b98...1bce5ced](caffeinelabs/motoko-base@65855b9...1bce5ce) * [`bcfee594`](caffeinelabs/motoko-base@bcfee59) Github action to merge master to next-moc ([dfinity-lab/motoko-base#207](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/207)) * [`d42a3ff4`](caffeinelabs/motoko-base@d42a3ff) github actions: sync doc to doc-pages branch ([dfinity-lab/motoko-base#208](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/208))
mergify bot
pushed a commit
that referenced
this pull request
Jan 14, 2021
## Changelog for motoko-base: Branch: next-moc Commits: [caffeinelabs/motoko-base@65855b98...1bce5ced](caffeinelabs/motoko-base@65855b9...1bce5ce) * [`bcfee594`](caffeinelabs/motoko-base@bcfee59) Github action to merge master to next-moc ([dfinity-lab/motoko-base#207](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/207)) * [`d42a3ff4`](caffeinelabs/motoko-base@d42a3ff) github actions: sync doc to doc-pages branch ([dfinity-lab/motoko-base#208](http://r.duckduckgo.com/l/?uddg=https://github.com/dfinity-lab/motoko-base/issues/208))
dfinity-bot
added a commit
that referenced
this pull request
Jun 30, 2023
## Changelog for ic-hs: Branch: master Commits: [dfinity/ic-hs@b1444b4c...1ef6a251](dfinity/ic-hs@b1444b4...1ef6a25) * [`1ef6a251`](dfinity/ic-hs@1ef6a25) parse Boolean values in CBOR ([dfinity/ic-hs#207](https://github.com/dfinity/ic-hs/issues/207))
dfinity-bot
added a commit
that referenced
this pull request
Jul 1, 2023
## Changelog for ic-hs: Branch: master Commits: [dfinity/ic-hs@b1444b4c...f802ac37](dfinity/ic-hs@b1444b4...f802ac3) * [`1ef6a251`](dfinity/ic-hs@1ef6a25) parse Boolean values in CBOR ([dfinity/ic-hs#207](https://github.com/dfinity/ic-hs/issues/207)) * [`f802ac37`](dfinity/ic-hs@f802ac3) update Wasm validation conditions ([dfinity/ic-hs#185](https://github.com/dfinity/ic-hs/issues/185))
mergify bot
pushed a commit
that referenced
this pull request
Jul 1, 2023
## Changelog for ic-hs: Branch: master Commits: [dfinity/ic-hs@b1444b4c...f802ac37](dfinity/ic-hs@b1444b4...f802ac3) * [`1ef6a251`](dfinity/ic-hs@1ef6a25) parse Boolean values in CBOR ([dfinity/ic-hs#207](https://github.com/dfinity/ic-hs/issues/207)) * [`f802ac37`](dfinity/ic-hs@f802ac3) update Wasm validation conditions ([dfinity/ic-hs#185](https://github.com/dfinity/ic-hs/issues/185))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A simple example for Matthew of using multiple files for poor mans modular programming.
It turns out that
ascalready lets you specify multiple.asfiles (for both interpretation and compilation).The semantics is to simply concatenate the files and treat them as a single program (so no namespace management yet).
NB: for compilation (only) you need to explicitly specify the output using
-o <filename>.wasm file …