Minimal programming language prototype, created with goal to have very small compiler, so that anyone can write his own compiler for it.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
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