mirror of
https://github.com/RGBCube/serenity
synced 2025-05-17 12:05:07 +00:00
15 lines
219 B
C++
15 lines
219 B
C++
#include <stdio.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
if (argc > 1) {
|
|
for (;;) {
|
|
puts(argv[1]);
|
|
}
|
|
} else {
|
|
for (;;) {
|
|
puts("yes");
|
|
}
|
|
}
|
|
return 0;
|
|
}
|