summaryrefslogtreecommitdiff
path: root/rushs/evalexpr/alphabet/alphabet.c
diff options
context:
space:
mode:
Diffstat (limited to 'rushs/evalexpr/alphabet/alphabet.c')
-rw-r--r--rushs/evalexpr/alphabet/alphabet.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/rushs/evalexpr/alphabet/alphabet.c b/rushs/evalexpr/alphabet/alphabet.c
deleted file mode 100644
index 9496c66..0000000
--- a/rushs/evalexpr/alphabet/alphabet.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <stdio.h>
-
-int main(void)
-{
- for (char i = 'a'; i < 'z'; i++)
- {
- putchar(i);
- putchar(' ');
- }
- putchar('z');
- putchar('\n');
- return 0;
-}