Re: [go-nuts] Looking for free, part-time, remote internship.

2017-02-12 Thread Néstor
Hi, I like e in San Diego, California and I am in the same boat as Malhar, looking for a chance in the Golang world. Jonathan, how do you find out about open source projects in Golang that need help? Thanks, Néstor On Feb 12, 2017 5:35 PM, "Jonathan Yu" wrote: Have you

Re: [go-nuts] about sorting array

2017-02-01 Thread Néstor Flórez
Wim, Ahh, I understand now. Thanks a lot for the explanation, Nestor On Wednesday, February 1, 2017 at 5:05:03 PM UTC-8, Wim Lewis wrote: > > On Feb 1, 2017, at 4:56 PM, Néstor Flórez > > wrote: > > OK, thanks for the clarification on the size being immutable.(I am trying

Re: [go-nuts] about sorting array

2017-02-01 Thread Néstor Flórez
what is happening? Thanks On Wednesday, February 1, 2017 at 4:30:37 PM UTC-8, Michael Jones wrote: > > array contents are not immutable, just their size. > > On Wed, Feb 1, 2017 at 4:13 PM, Néstor Flórez > wrote: > >> The below code sorts an array but it does it an by creat

[go-nuts] about sorting array

2017-02-01 Thread Néstor Flórez
The below code sorts an array but it does it an by creating a slice, correct? What happened to the original array? Arrays are inmutable -- package main import ("fmt" "sort") fu

[go-nuts] Help - main.go:15: undefined: say

2017-01-30 Thread Néstor Flórez
I am trying to learn Go and I do not understand why I am getting an error on line 15? Can someone tell me what is the problem. Thanks!! --- package main import "fmt" func main() { type say struct { Name string Power int } goku := say{"Goku", 9000} Super(goku) fmt.Prin