mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 00:52:28 +02:00
16 lines
219 B
C++
16 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;
|
|
}
|