Re: [Factor-talk] Escapable each

2019-09-23 Thread KUSUMOTO Norio
> 2019/09/23 18:03、Alexander Ilin のメール: > > Have you used the `backtrack` vocab for this? > https://re-factor.blogspot.com/2015/06/send-more-money.html No, I didn't. I didn't know it. This my liblary is a port from tiny_prolog and its descendants, ruby-prolog.

Re: [Factor-talk] Escapable each

2019-09-23 Thread Alexander Ilin
Have you used the `backtrack` vocab for this? https://re-factor.blogspot.com/2015/06/send-more-money.html 23.09.2019, 10:43, "KUSUMOTO Norio" : >>  2019/09/22 20:21、Alexander Ilin のメール: >> >>  I use `loop` or `while`, depending on the details. > > Hello. Thank you for your answer. > > I rewrote

Re: [Factor-talk] Escapable each

2019-09-23 Thread Alexander Ilin
Wow, this looks very cool! : )) 23.09.2019, 10:43, "KUSUMOTO Norio" : >>  2019/09/22 20:21、Alexander Ilin のメール: >> >>  I use `loop` or `while`, depending on the details. > > Hello. Thank you for your answer. > > I rewrote my program using `loop 'and `while'. The library I'm currently > building

Re: [Factor-talk] Escapable each

2019-09-23 Thread KUSUMOTO Norio
> 2019/09/22 20:21、Alexander Ilin のメール: > > I use `loop` or `while`, depending on the details. Hello. Thank you for your answer. I rewrote my program using `loop 'and `while'. The library I'm currently building is an extended port from Ruby's one, and I used `with-return` to mimic the code.