BASIC/LL

概要

LLVM用BASICコンパイラです。

FizzBuzzが実行できます。

for I=1 to 100
A=1
if I mod 3 = 0 then ?"Fizz";:A=0
if I mod 5 = 0 then ?"Buzz";:A=0
if A then ?I;
?
next

download

Latest Version