Files
cs420/examples/c/simple.c
Chunmyong Park e4eec1e81d Update skeleton
2020-07-02 14:28:58 +00:00

8 lines
84 B
C

int nonce = 1; // For random input
int main()
{
int x = nonce;
return x;
}