rfcs
rfcs copied to clipboard
RFCs for changes to Pony
We discussed on a recent sync call the idea of being able to load struct definitions from a C header, so that Pony code could potentially depend on platform dependent...
When a lambda is assigned to a reference with a definite type, or passed as an argument, we want to infer the capability of the resulting object literal based on...
This was originally opened as [issue 139](https://github.com/ponylang/ponyc/issues/139) on the ponyc repo: There is a detailed list of requirements and some discussion.
We'd welcome an RFC that based on the discussion that was started here: https://github.com/ponylang/ponyc/issues/317.
The idea of field type inference was raised in ponyc [issue 418](https://github.com/ponylang/ponyc/issues/418). If anyone is interested in this feature and wants to write up a RFC, we would welcome it....
This request for RFC comes from the now close ponyc [issue 489](https://github.com/ponylang/ponyc/issues/489). Currently the ponyc codebase uses a number of hardcoded paths that contain `/` that break on Windows where...
[Rendered](https://github.com/kulibali/ponyc-rfcs/blob/static_tables/text/0000-static-tables.md)
examples in tutorial ```pony if a == b then env.out.print("they are the same") else if a > b then env.out.print("a is bigger") else env.out.print("b bigger") end end ``` limited by...
In https://github.com/ponylang/ponyc/issues/4258 @pcrockett requested a means for getting reports of errors from StdStream. The example given is taking a Pony hello world program and running it as such: ```bash ./hello-pony...