[go-nuts] Re: Fuchsia Programming Language Policy

2020-02-25 Thread G Shields
They made a political decision, Not supporting GO in the new OS or a GO GUI is a show stopper. After Unladen Swallow and others https://killedbygoogle.com/ I am, No longer interested in GO On Tuesday, February 25, 2020 at 9:22:11 AM UTC-8, Jon Conradt wrote: > > The Fuchsia Programming Language

[go-nuts] Re: Golang 1.9 failing with excelize (simple case works under 1.8.3)

2017-08-31 Thread G Shields
icking with excelize, due to better documentation and functional. Thanks again! On Friday, August 25, 2017 at 3:10:40 PM UTC-7, G Shields wrote: > > Under 1.8.3 the program run: > package main > > import ( > "fmt" > "os" > "st

[go-nuts] Re: Golang 1.9 failing with excelize (simple case works under 1.8.3)

2017-08-30 Thread G Shields
, August 25, 2017 at 3:10:40 PM UTC-7, G Shields wrote: > > Under 1.8.3 the program run: > package main > > import ( > "fmt" > "os" > "strconv" > > "github.com/Luxurioust/excelize" > ) > > func checkErr(er

[go-nuts] Re: Golang 1.9 failing with excelize (simple case works under 1.8.3)

2017-08-28 Thread G Shields
here is the xlsx data file FYI this fails on both mac and ubuntu with 1.9 On Friday, August 25, 2017 at 3:10:40 PM UTC-7, G Shields wrote: > > Under 1.8.3 the program run: > package main > > import ( > "fmt" > "os" > "strconv"

[go-nuts] Golang 1.9 failing with excelize (simple case works under 1.8.3)

2017-08-25 Thread G Shields
Under 1.8.3 the program run: package main import ( "fmt" "os" "strconv" "github.com/Luxurioust/excelize" ) func checkErr(err error) { if err != nil { fmt.Println(err) os.Exit(1) } } func main() { xlsx, err := excelize.OpenFile("test.xlsx") checkE