Roger Oliveira

Results 4 comments of Roger Oliveira

Thank you all! I'm learning ReactJS and ended here searching for a solution. I changed from: `color={withDraw} ` to: `color={withDraw ? 1 : 0} ` and it works!

Code: ```Go package main import ( "fmt" ) var x int var y string var z bool func main() { fmt.Println(x, y, z) } ``` Output: ``` 0 false Program...

Code: ```Go package main import ( "fmt" ) func main() { x := 42 y := "James Bond" z := true fmt.Println(x, y, z) fmt.Println(x) fmt.Println(y) fmt.Println(z) } ``` Output:...

Hi everyone, can someone approve this request? I was looking for the default colors as well. And thanks @JetpackJackson