rfcs icon indicating copy to clipboard operation
rfcs copied to clipboard

RFCs for changes to Pony

Results 61 rfcs issues
Sort by recently updated
recently updated
newest added

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...

0 - request - official

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...

0 - request - official

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.

0 - request - official

We'd welcome an RFC that based on the discussion that was started here: https://github.com/ponylang/ponyc/issues/317.

0 - request - official

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....

0 - request - user

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...

0 - request - official

[Rendered](https://github.com/kulibali/ponyc-rfcs/blob/static_tables/text/0000-static-tables.md)

status - new

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...

0 - request - user

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...

0 - request - user