remove number for source
This commit is contained in:
14
src/bytes/bytes.go
Normal file
14
src/bytes/bytes.go
Normal file
@@ -0,0 +1,14 @@
|
||||
// ## Bytes
|
||||
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
arr := []byte("some bytes")
|
||||
str := string([]byte{'s', 't', 'r', 'i', 'n', 'g'})
|
||||
fmt.Println(arr)
|
||||
fmt.Println(str)
|
||||
}
|
||||
|
||||
// todo: bytes package?
|
||||
Reference in New Issue
Block a user