pyret-lang icon indicating copy to clipboard operation
pyret-lang copied to clipboard

The Pyret language.

Results 172 pyret-lang issues
Sort by recently updated
recently updated
newest added

See short demo below: ![Mar-09-2022 09-21-45](https://user-images.githubusercontent.com/119891/157496173-51513181-ed23-4561-9fe5-e47faefc0736.gif)

anchor/repartee

Currently, the VS extension is only available at Microsoft's VS Marketplace. According to that Marketplace's T&Cs, that registry can only be used by the official VS Code release (with is...

Bumps [cached-path-relative](https://github.com/ashaffer/cached-path-relative) from 1.0.2 to 1.1.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cached-path-relative&package-manager=npm_and_yarn&previous-version=1.0.2&new-version=1.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

It would be nice to have a `is-special-key` predicate exported by the `world` library to recognize all the special keys that `on-key` handlers can receive. That way, one can use...

If you type `include reactor` instead of `include reactors`, it would be nice to get an error that says "I can't find a library of that name" (as you do...

Currently, it's very natural to express properties using `satisfies`, and with a fix for #1633, debugging errors that are uncovered by generated input is quite straightforward. The last typical piece...

enhancement

This, at least partly, addresses #1633. In particular, it adds a new case of `TestResult`, `failure-exn-satisfies-rhs`, which is used when it a satisfies test where an exception was trigger in...

I'm trying to write down an example of randomized testing (e.g., fuzzing / quickcheck tests). Doing that works fine, but when tests _fail_, I haven't figured out a good way...

I was talking to @blerner about this the other day, and after that, looked up a bit of what it would take. It seems like WebRTC is mature enough (supported...

enhancement

Example: ``` data MultiBox: | mbox(ref v1 :: Number, ref v2 :: Number, ref v3 :: Number, v4 :: Number) where: mb = mbox(1, 2, 3, 4) cases(MultiBox) mb block:...