[go-nuts] Re: how create a go app win, linux of etc ?????

2016-10-08 Thread Gary Scarr
On Monday, October 3, 2016 at 2:34:31 PM UTC-4, hadies...@gmail.com wrote: > > mean is : i want create application for window or others platforms > > If you only want a gui for Windows, the simplest go-gettable package I've >> found with useful examples is https://github.com/lxn/walk >> >> >> >

[go-nuts] Re: tidy way to write a repeat-until in golang

2016-10-08 Thread Gary Scarr
I prefer to show the intent of the bool with something like for done :=false;!done;{ //stuff done = xxx // done = expr in until(expr) } On Friday, October 7, 2016 at 7:25:02 PM UTC-4, xiio...@gmail.com wrote: > > Any suggestions on a way to write a repeat until lo