mirror of
https://github.com/Noratrieb/rustv32i.git
synced 2026-01-14 13:25:01 +01:00
test cases
This commit is contained in:
parent
d7425f460f
commit
8989d32ff5
2 changed files with 14 additions and 0 deletions
9
test/bye.c
Normal file
9
test/bye.c
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#include<stdio.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
int sum = 0;
|
||||
for (int i = 0; i < 200000; i++) {
|
||||
sum += i;
|
||||
}
|
||||
printf("meow %d\n", sum);
|
||||
}
|
||||
5
test/hello.c
Normal file
5
test/hello.c
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#include<stdio.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
printf("meow %d", argc);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue