pullrequests Search Results · repo:evylang/evy language:Go
Filter by
435 results
(142 ms)435 results
inevylang/evy (press backspace or delete to remove)Simplify moving red dot sample as the function call is not needed here. Every time I show somebody the Evy playground, I
end up saying: this is a sample of how to move a red dot on the screen, but it could ...
juliaogris
- 3
- Opened on Aug 18, 2025
- #467
Fix dash reset issues with an explicit check for dash. Previously it resulted in the incorrect:
canvas.ctx.setLineDash([0])
Now it results in the correct:
canvas.ctx.setLineDash([])
See
https://evy-lang-stage-play--466-09qkylmw.web.app/#source=https://gist.githubusercontent.com/juliaogris/628d08c39d2710b04ce2fe0b17e7827f/raw/newton.evy ...
juliaogris
- 2
- Opened on Mar 5, 2025
- #466
Update primary button with better 3d look and animation, according to Josh Comeau post.
Demonstrate pushable button in the standalone frontend/css/pushable.html.
Josh uses separate spans for button front ...
juliaogris
- 1
- Opened on Feb 11, 2025
- #465
Add a floating point conversion when multiplying when scaling coordinates so that the multiplication does not get fused
with an adjacent addition or subtraction. This causes two instructions to be generated, ...
camh-
- 2
- Opened on Feb 8, 2025
- #464
Targets docs, learn and labs all use prettier which gets installed with
npx --prefix $(NODEPREFIX) -y prettier # ...
Occasionally this seems to fail on CI when run concurrently. Fix by adding an explicit ...
juliaogris
- 2
- Opened on Feb 8, 2025
- #463
Rework random rectangle generation to avoid rounding differences on Mac and Linux. This is not going to the bottom of
the problem, just making the build pass again on mac for now.
Additionally a vulnerability ...
juliaogris
- 4
- Opened on Feb 7, 2025
- #462
Upgrade hermitised and node tools according to docs. It all went smoothly apart from Playwright which required a bunch
of snapshot updates again and is still not working properly with local Node run on ...
juliaogris
- 2
- Opened on Jan 30, 2025
- #461
Implement niladic function calls without parens, so that the following Evy code is now valid:
if rand1 0.5 print Heads end
print read
print rand1 rand1+10
which reads better than if (rand1) 0.5 etc. ...
juliaogris
- 10
- Opened on Jan 20, 2025
- #460
Upgrade hermitised and node tools according to docs. It all went smoothly apart from Playwright which required a bunch
of snapshot updates again and is still not working properly.
docs: https://github.com/evylang/evy/blob/5b196cbe154c60d68b2c2deffa41e118985ffba9/docs/development/upgrade.md ...
juliaogris
- 2
- Opened on Dec 20, 2024
- #459
Rename uses of runtime where it refers to the CLI runtime and the browser runtime to platform . Runtime usually refers
to the thing doing the running, such as the evaluator or bytecode VM and has started ...
camh-
- 2
- Opened on Dec 19, 2024
- #458