Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 378 Bytes

RCC.md

File metadata and controls

12 lines (7 loc) · 378 Bytes

RCC

rcc is the simple C compiler included. it works ok, barely sort of, but has a few bugs:

  1. function calls and declarations must have a space between function name and the parenthesis: abc(5) -> abc (5)
  2. function declarations cannot define parameters - if you try, strange bugs occur

test2.c expected output

AAAAAAAA

and so on. An infinite loop of 'A's.