mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 14:48:40 +00:00
8 lines
78 B
Go
8 lines
78 B
Go
package main
|
|
func main() {
|
|
p := []byte{}
|
|
for len(p) >= 1 {
|
|
p = p[1:]
|
|
}
|
|
}
|