I hereby claim:
- I am cep21 on github.
- I am cep21 (https://keybase.io/cep21) on keybase.
- I have a public key ASAwNIEREtDh3M0e-0fmJBK5AlukNaSfZzfs3spchpbB2Qo
To claim this, I am signing this object:
| package trace_110 | |
| import ( | |
| "testing" | |
| "sync" | |
| "fmt" | |
| "time" | |
| "net/http" | |
| ) |
| package main | |
| import ( | |
| "sync" | |
| "testing" | |
| ) | |
| func TestAppend(t *testing.T) { | |
| x := []string{"start"} |
| package main | |
| import ( | |
| "testing" | |
| "sync" | |
| ) | |
| func TestAppend(t *testing.T) { | |
| x := make([]string, 0, 6) |
| package main | |
| import ( | |
| "sync" | |
| "testing" | |
| ) | |
| func TestAppend(t *testing.T) { | |
| x := make([]string, 0, 6) | |
| x = append(x, "start") |
| type Ship struct { | |
| Health int | |
| LocX float64 | |
| LocY float64 | |
| Size float64 | |
| } | |
| func (s *Ship) Heal(amnt int) { | |
| if s.Health >= 0 { | |
| s.Health += amnt |
| type Ship2 struct { | |
| GameKillable | |
| PhysicalObject | |
| } | |
| type PhysicalObject struct { | |
| LocX float64 | |
| LocY float64 | |
| Size float64 | |
| } |
I hereby claim:
To claim this, I am signing this object: