mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
9 lines
79 B
Go
9 lines
79 B
Go
package main
|
|
|
|
func main() {
|
|
p := []byte{}
|
|
for len(p) >= 1 {
|
|
p = p[1:]
|
|
}
|
|
}
|