shithub: brokentoys

ref: 317cb407d207055980e3b700e5dc5a5178b0672b
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);
}