mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05: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;
|
|
}
|