There was an error while loading. Please reload this page.
The at operator is used for obtaining an offset address of a memory location.
at
It is equivalent to:
&array_like[index]
array_like at index
import basics func main(argc int, argv **ubyte) { end **ubyte = argv at argc for(p **ubyte = argv; p != end; p = p at 1){ printf("=> %s\n", *p) } }
Table of Contents