|
|
|
|
|
by ballard
4712 days ago
|
|
This doesn't reveal any secrets into systems engineering, but it slices: package main
import "fmt"
func main() {
cake := make([]byte, 2600)
copy(cake, []byte("Happy Birthday, Lundberg !"))
lundberg := cake[:8]
milton := cake[:0]
fmt.Println("Lundberg got :", string(lundberg))
fmt.Println("Milton got :", string(milton))
}
// :-) (Ran out of UTF8 smileys and movie fact checkers).
// And yes could've used string but bytes are awesomer.
|
|