shithub: brokentoys

ref: 6cef9c8e6d812216fa88288831ec8c414010c265
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);
}