Minimal programming language prototype, created with goal to have very small compiler, so that anyone can write his own compiler for it.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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