elikaski / BF-it

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

Made it so you can assign strings to arrays #67

Closed NeeEoo closed 3 years ago

NeeEoo commented 3 years ago

Closes #27

Only thing missing that isn't necessary (i think) is strings in LBRACE. Example:

char test[2][5] = {
    "Hello",
    "World"
};

Currently only this works:

char test[5] = "Hello";
test = "World";
elikaski commented 3 years ago

Thanks! Good work =]