add true, false

This commit is contained in:
K. Lange 2018-08-02 14:50:06 +09:00
parent e98b017e0d
commit ebd877624f
2 changed files with 6 additions and 0 deletions

3
apps/false.c Normal file
View File

@ -0,0 +1,3 @@
int main() {
return 1;
}

3
apps/true.c Normal file
View File

@ -0,0 +1,3 @@
int main() {
return 0;
}