fork download
  1. #import <objc/objc.h>
  2. #import <objc/Object.h>
  3. #import <Foundation/Foundation.h>
  4.  
  5. @implementation TestObj
  6. int main()
  7. {
  8. if (4 == 4 && 3 == 3) {
  9. printf("yep");
  10. } else {
  11. printf("nope");
  12. }
  13. return 0;
  14. }
  15. @end
Success #stdin #stdout 0.02s 41920KB
stdin
Standard input is empty
stdout
yep