Tosti icon indicating copy to clipboard operation
Tosti copied to clipboard

An Objective-C interpreter without C support.

Results 3 Tosti issues
Sort by recently updated
recently updated
newest added

The Interpretation does not seem to be managing the memory of objects. The instances created do not appear to be deallocating.

Hi, Interesting project. Have you considered using Clang to generate an AST and then run the interpreted code by traversing the AST? Rares

enhancement

Running the following code: ``` NSInteger num = 235 ``` And then the following produces errors or does not return the correct value: **+=** does not change the value ```...

enhancement