Skip to content

Last Week in Pony - October 1, 2023

It was another quiet week in Pony as Sync was fairly short, Office Hours has moved, and Sean is still out on vacation.

Items of Note

Pony Development Sync

Audio from the September 26th, 2023 sync is available.

We kept it fairly short. We reviewed some PRs, and spent some time talking through a type system issue causing a compiler crash.

Office Hours

We have an open Zoom meeting every Friday for the community to get together and well, do whatever they want. In theory, Sean T. Allen “owns” the meeting and will often set an agenda. Anyone is welcome to show up and participate. Got a Pony related problem you need help solving and prefer to do it synchronously? Give Office Hours a try.

There were no office hours this week. Please note that the time of Office Hours has changed; refer to the calendar (link below) to keep track of the schedule.

If you’d be interested in attending an Office Hours in the future, you should join some time, there’s a calendar you can subscribe to to stay up-to-date with the schedule. We do our best to keep the calendar up-to-date.

Community Resource Highlight

We like to take a moment in each Last Week in Pony to highlight a community resource. There are many community resources that can go unappreciated until just the right time when someone hops into the Ponylang Zulip asking a question or facing a problem we have all had at one time or another. Well here in Last Week in Pony, we make it just the right time to highlight one of our excellent community resources.

This week we are highlighting a much broader topic: types!

Pony is an object-oriented language, but there are different kinds of objects. There are classes, which are the “normal objects” someone familiar with object-oriented languages are familiar with. Next, Primitives, which are like classes with the exception of containing no fields and there being a single instance of each user-defined primitive. Actors are asynchronous objects that have a mailbox and will process messages in the order they are received. The two abstract types in Pony are Traits and Interfaces, which enable nominal and structural typing, respectively. Structs are objects for interaction with C-FFI. There are also Type Aliases, which give new names to old types. Lastly, there are type expressions such as unions and intersections.


Last Week In Pony is a weekly blog post to catch you up on the latest news for the Pony programming language. To learn more about Pony, check out our website, our Twitter account @ponylang, or our Zulip community.

Got something you think should be featured? There’s a GitHub issue for that! Add a comment to the open “Last Week in Pony” issue.

Interested in making a change, or keeping up with changes to Pony? Check out the RFC repo. Contributors welcome!