Add tests/fail/f-echo-multiline.c
Benchmarks / Run-Benchmarks (push) Has been cancelled Details
Tests / Run-Tests (push) Successful in 7s Details

main
drunkendog 2023-09-25 20:01:04 +01:00
parent c458f4e134
commit f60fe2625d
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include <stdio.h>
int main(void) {
int input;
scanf("%d", &input);
printf("%d\n", input);
printf("%d\n", input);
printf("%d\n", input);
return 0;
}