<SeanTAllen>
FunkyBob: the echo server example is a good start to how you do network programming in Pony. Its for TCP but the same patterns apply to UDP: https://github.com/ponylang/ponyc/blob/master/examples/echo/echo.pony. Additionally, the code is somewhat out of date, but when I wrote the original version of that echo server, I also did a blog post to go along with
<SeanTAllen>
FunkyBob: there's no subclassing in Pony. if you have time, I'd love if you could email me and we could talk about how you've gone about learning so far. It helps give me ideas on how we can improve the experience for folks who are learning.
Matthias247 has quit [Read error: Connection reset by peer]
<FunkyBob>
back
<FunkyBob>
SeanTAllen: so far my learning has been reading the tutorial a couple of times, and starting to play
<FunkyBob>
however, looking at some samples it seems the language has evolved somewhat since I last read the tutorial
<FunkyBob>
sleep time
jonrh has quit [Remote host closed the connection]
<SeanTAllen>
FunkyBob: when did you last read the tutorial?
jonrh has joined #ponylang
smoon has joined #ponylang
endformationage has joined #ponylang
chemist69 has quit [Ping timeout: 260 seconds]
chemist69 has joined #ponylang
chemist69 has quit [Ping timeout: 260 seconds]
chemist69 has joined #ponylang
aav has joined #ponylang
Matthias247 has joined #ponylang
inara has quit [Quit: Leaving]
inara has joined #ponylang
aav has quit []
graaff has quit [Quit: Leaving]
_whitelogger has joined #ponylang
papey_lap has joined #ponylang
smoon has quit [Quit: smoon]
Matthias247 has quit [Read error: Connection reset by peer]
papey_lap has quit [Quit: WeeChat 1.7.1]
<FunkyBob>
SeanTAllen: few months ago... a refresh wouldn't hurt
chemist69 has quit [Ping timeout: 255 seconds]
endformationage has quit [Remote host closed the connection]
chemist69 has joined #ponylang
<SeanTAllen>
did you read it front to back? jump around? it's pretty dense. i'm always curious how folks approach it.
<FunkyBob>
SeanTAllen: I originally read it from the start, in order
<FunkyBob>
ok, so I can't use inheritance... and composition is the thing... so, how do I give my connection handler access to shared state?