Skip to content

Instantly share code, notes, and snippets.

@hawaijar
Created October 11, 2021 14:26
Show Gist options
  • Save hawaijar/050555a5774285ec87e5f4187e61c1bf to your computer and use it in GitHub Desktop.
Save hawaijar/050555a5774285ec87e5f4187e61c1bf to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
BOOL isRaining = true;
if(isRaining) {
printf("Get Umbrellla");
}
else {
printf("The sky is clear");
}
printf("\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment