shithub: brokentoys

ref: a39951d8f69209cfea2b7051832b851914e662ef
dir: /bracketop.c/

View raw version
#include <u.h>
#include <libc.h>

void
main()
{
	int a[] = {1, 2};

	print("%d\n", 1[a]);
	exits(nil);
}