summaryrefslogtreecommitdiff
path: root/rushs/evalexpr/repeat
diff options
context:
space:
mode:
Diffstat (limited to 'rushs/evalexpr/repeat')
-rw-r--r--rushs/evalexpr/repeat/repeat.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/rushs/evalexpr/repeat/repeat.c b/rushs/evalexpr/repeat/repeat.c
deleted file mode 100644
index 06d0b43..0000000
--- a/rushs/evalexpr/repeat/repeat.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdio.h>
-
-int main(int argc, char **argv)
-{
- if (argc != 3)
- return 1;
-
- for (int i = 0; i < argv[2][0] - '0'; i++)
- puts(argv[1]);
- return 0;
-}