Reorganize tests

This commit is contained in:
Jeehoon Kang
2020-04-23 23:07:23 +09:00
parent 073a65ae53
commit 7c53818f73
50 changed files with 3 additions and 4 deletions

11
examples/c/test.c Normal file
View File

@@ -0,0 +1,11 @@
int main() {
long int l = 1;
long l2 = 2;
long long l3 = 3;
short int s = 4;
short s2 = 5;
int i = 6;
char c = 7;
return (l + l2 + l3 + s + s2 + i + c) == 28;
}