Minimal programming language prototype, created with goal to have very small compiler, so that anyone can write his own compiler for it.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

9 lines
156B

  1. #!/bin/bash
  2. set -xe
  3. #~gcc -g -ansi -Wall -Wextra -Wpedantic -Werror -o xiranda xiranda.c
  4. gcc -g -ansi -Wall -Wextra -Wpedantic -o xiranda xiranda.c
  5. exit