Doubles/floating points generally not supported. Example c tests: ``` int bar() { double foo = 4.0; if (1 == 1){ foo = 1.0; } } ``` ``` int bar() { double foo = 5.0; if (1.0 < foo){ return 1; } } ``` ``` int bar() { double foo = 1.0; double goo = 2.0; return foo + goo } ```
Doubles/floating points generally not supported.
Example c tests: