jemc changed the topic of #ponylang to: Welcome! Please check out our Code of Conduct => https://github.com/ponylang/ponyc/blob/master/CODE_OF_CONDUCT.md | Public IRC logs are available => http://irclog.whitequark.org/ponylang | Please consider participating in our mailing lists => https://pony.groups.io/g/pony
jhorwitz_ has joined #ponylang
<jhorwitz_> Hey! Saw on Twitter, would love to work on This week In Pony
<jhorwitz_> *last
jaro has quit [Ping timeout: 255 seconds]
dipin has quit [Quit: dipin]
dipin has joined #ponylang
dipin has quit [Client Quit]
khan has joined #ponylang
bimawa has joined #ponylang
bimawa has quit [Ping timeout: 268 seconds]
rblasucci has joined #ponylang
khan has quit [Ping timeout: 256 seconds]
khan has joined #ponylang
rblasucci has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rblasucci has joined #ponylang
rblasucci has quit [Client Quit]
rblasucci has joined #ponylang
rblasucci has quit [Client Quit]
khan has quit [Ping timeout: 264 seconds]
khan has joined #ponylang
xllndr_wrk has joined #ponylang
aturley_ has joined #ponylang
bimawa has joined #ponylang
bimawa has quit [Ping timeout: 268 seconds]
bimawa has joined #ponylang
khan has quit [Remote host closed the connection]
bimawa has quit [Ping timeout: 256 seconds]
bimawa has joined #ponylang
rblasucci has joined #ponylang
bimawa has quit [Ping timeout: 256 seconds]
fridge has joined #ponylang
fridge has quit [Quit: Leaving]
alxs has joined #ponylang
bimawa has joined #ponylang
bimawa has quit [Ping timeout: 276 seconds]
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
bimawa has joined #ponylang
dipin has joined #ponylang
alxs has joined #ponylang
bimawa has quit [Ping timeout: 276 seconds]
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
alxs has joined #ponylang
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
alxs has joined #ponylang
alxs has quit [Client Quit]
alxs has joined #ponylang
alxs has quit [Client Quit]
alxs has joined #ponylang
alxs has quit [Ping timeout: 265 seconds]
rblasucci has quit [Quit: Textual IRC Client: www.textualapp.com]
jmiven has joined #ponylang
alxs has joined #ponylang
aturley_ has quit [Quit: aturley_]
aturley has joined #ponylang
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
khan has joined #ponylang
bimawa has joined #ponylang
bimawa has quit [Ping timeout: 268 seconds]
dipin has quit [Quit: dipin]
endformationage has joined #ponylang
alxs has joined #ponylang
dipin has joined #ponylang
bimawa has joined #ponylang
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
bimawa has quit [Ping timeout: 245 seconds]
bimawa has joined #ponylang
bimawa has quit [Ping timeout: 256 seconds]
pzel has joined #ponylang
bimawa has joined #ponylang
dipin has quit [Quit: dipin]
dipin has joined #ponylang
dipin has quit [Client Quit]
alxs has joined #ponylang
aturley has quit [Ping timeout: 240 seconds]
aturley has joined #ponylang
_whitelogger has joined #ponylang
khan has quit [Quit: khan]
alxs has quit [Quit: Computer's gone to sleep. ZZZzzz…]
Shorttail has joined #ponylang
<Shorttail> Actor A is calling a behavior on actor B, and one the of the arguments is a lambda. How can I call a behavior on actor A from that lambda? The error message is that I can only capture fields, parameters and local variables
lsdkjflsdjfldsj has joined #ponylang
<doublec> Shorttail: are you capturing the 'this' or something in the lambda and passing it to B?
<doublec> Shorttail: you will probably need to assign the reference to A to a "tag" variable and capture that tag
<doublec> Shorttail: since you can't capture 'this'
pzel has quit [Quit: leaving]
jaro has joined #ponylang
<endformationage> Shorttail: Here's an example I came up with: https://playground.ponylang.org/?gist=953de63b9c820bcecf6fb2b8e250db78
lsdkjflsdjfldsj has quit [Ping timeout: 260 seconds]
<Shorttail> Thanks to both of you. I tried converting this to a tag, but did it inside the lambda body instead of outside. It works now