[go-nuts] GoAsm And goland ide

2018-12-18 Thread Hunter Breathat
hey im wondering if anyone knows how to set up a goasm projecct? Thanks in advance H -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@goo

[go-nuts] Adding packages for the lang

2018-09-21 Thread Hunter Breathat
Hey does anyone know if we can request commits to add some basic Functionality to the lang core ex. A Node struct? Or a PriorityQueue? Jw As they are some pretty common structs that used and was just wondering. I know we could host them on our own git{github,gitlab, git platfrom}. But is there

[go-nuts] Re: Taking possible EOF as input

2018-09-04 Thread Hunter Breathat
t) > } > if err := input.Err(); err != nil { > fmt.Fprintln(os.Stderr, err) > return > } > // input.Scan() == false && input.Err() == nil > fmt.Println(io.EOF) > } > > Output: > > # On Linux, Ctrl-D for eof > > $ go run eof.go &

[go-nuts] Re: Taking possible EOF as input

2018-09-04 Thread Hunter Breathat
On Monday, 3 September 2018 12:49:12 UTC-4, Hunter Breathat wrote: > > Hey, so I'm currently trying to create a custom shell. > > I am currently trying to implement the EOF exit (^D). Currently, I am able > to use exit as input and a variety of other > commands, platform-

[go-nuts] Taking possible EOF as input

2018-09-03 Thread Hunter Breathat
Hey, so I'm currently trying to create a custom shell. I am currently trying to implement the EOF exit (^D). Currently, I am able to use exit as input and a variety of other commands, platform-specific; anything, not windows related (WIP), but I am having an issue with the EOF causing an infinit