ponyc
ponyc copied to clipboard
Pony is an open-source, actor-model, capabilities-secure, high performance programming language
## Context Here is some incorrect code [(in playground)](https://playground.ponylang.io/?gist=780e8fae4fa8c385e1fc0d61a59416d4) trying to update the value the first element of array `bar` through a lambda: ```pony class Foo let _env: Env let...
LLVM has experimental support of NVPTX and AMDGPU backends. Getting Pony to run on these as a proof of concept would be great.
In the same vein as GPUs (#1330) LLVM has an experimental WebAssembly backend. A Pony-in-a-browser proof of concept would be great.
Will close #1829 when merged. Had to use a bit of `sed` to insert a "fake" index page in the correct place. Improvements as I see them prior to merging:...
Its not reasonable for us to assume that when people find gaps in the standard library documentation that they know they can contribute by opening a PR here. That should...
So currently, `install` in our "unix" Makefile isn't hooked into cmake so it can lead to errors. in particular if you do ``` make configure arch=not-our-default make build make install...
in platform.h we have a number of compiler definition checks and set `ARMV6`. The definition is only used on 1 place in the codebase; in cpu.c to turn on code...
Not a huge deal, but this confused me a lot. Should this fail to compile instead of having this behaviour? ``` actor Main new create(env: Env) => var somevar: String...
While working with union types while is seems reasonable to call `u.definition()`, on a variable `u`, declared with a union type, as in the code snippet below. However, this produces...