mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-15 23:18:48 +00:00
Reorganize tests
This commit is contained in:
11
examples/c/test.c
Normal file
11
examples/c/test.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user