compiler

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.deepztream.com/compiler
Log | Files | Refs

example.6 (92B)


      1 _start() {
      2   decl c = 64;
      3   while (c < 64+26)
      4     putc(c = 1 + c);
      5   putc(10);
      6   exit(0);
      7 }