Newer
Older
Import / research / other / simpVM / src / benchmark.c
@John Ryland John Ryland on 22 Dec 2020 92 bytes import NUC files


void main()
{
    int x = 1234;

    while (1) {
	x++;
	printf("hello %i\n", x);
    }
}