way

Results 3 issues of way

This is my code: ``` history.Append(tui.NewHBox( tui.NewLabel(time.Now().Format("15:04")), tui.NewPadder(1, 0, tui.NewLabel(fmt.Sprintf("", "john"))), tui.NewLabel(message), tui.NewSpacer(), )) ``` In fact I am trying the "chat" example, and read data from a TCP connection,...

The code is here:https://play.golang.org/p/4uRUUnpe-2M

` const data = { text: 'helloWorld', b: 0, ok: true } const obj = new Proxy(data, ...); effect(() => { console.log(obj.b++ + '') }) effect(() => { console.log(obj.b++ +...