Move the pin to v0.2.4 - #35
Merged
Merged
Conversation
The playground answers with whatever release it is pinned to, so moving the pin is how this site learns what the language does. v0.2.4 is the release where an effect can take a row variable, an operator can be bound to a function, and Int.max is a number. The corpus moves with the pin, because a program and the compiler that reads it are not separately pinned. It is twenty-nine files now: asks.deed is new and scheduler.deed changed under it, and the pair is the clearest thing in this release. The scheduler was written out by hand because its queue had to name every effect its tasks might perform, which only the program knows, so it could be written and not shipped. Now it is std/task and the example is three forks and a log. That one is in the picker, which is thirteen rather than twelve. It is a program somebody would recognise and it has tests, which is the button that works for everything in the picker but hello. Nothing here was written on the compiler's behalf. The version strings, the example index and the picker order are all checked against the artifact by tools/check.mjs, which reports 70 files, every link resolving, and v0.2.4 answering about all 29 examples.
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.
The playground answers with whatever release it is pinned to, so moving the pin is how this site learns what the language does. v0.2.4 is the release where an effect can take a row variable, an operator can be bound to a function, and
Int.maxis a number.The corpus moves with the pin, because a program and the compiler that reads it are not separately pinned. It is twenty-nine files now:
tasks.deedis new andscheduler.deedchanged under it, and that pair is the clearest thing in this release. The scheduler was written out by hand because its queue had to name every effect its tasks might perform, which only the program knows, so it could be written and not shipped. Now it isstd/taskand the example is three forks and a log.That one goes in the picker, which is thirteen rather than twelve. It is a program somebody would recognise and it has tests, which is the button that works for everything in the picker but
hello.Checked rather than assumed:
Also looked at, and needing nothing: the ten
kindvaluesplay.jsrenders are still exactly the ten the wasm module documents, so no output line falls through to the raw-JSON default the waysummary,propertyandrefuseddid at 0.2.3. And the error index is read out of the artifact at load time rather than committed, soDEED4031being retired in this release needs no edit here.Nothing in this pull request was written on the compiler's behalf.
Assisted by GitHub Copilot (Claude Opus 4.5).