elikaski / BF-it

A C-like language to Brainfuck compiler, written in Python
MIT License
120 stars 11 forks source link

If the parameter for printnum is a literal, then convert it to compile_print(str(num)) on compile time #64

Closed NeeEoo closed 2 years ago

NeeEoo commented 3 years ago
printint(55);
// becomes
print("55");