Merge pull request #13 from Vrganj/patch-1

Change return code to 0
This commit is contained in:
Brian Seymour 2020-06-18 13:52:03 -05:00 committed by GitHub
commit a6e181c045
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,5 +2,5 @@
int main(void) {
printf("good\n");
return 1;
return 0;
}