preparing 0.9 version, rename to crl1.h
[svn/Cll1h/.git] / demos / arguments1.c
diff --git a/demos/arguments1.c b/demos/arguments1.c
deleted file mode 100644 (file)
index 552e983..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "cll1.h"
-
-/* try to run: ./arguments1 -x xxx yyyy -c cccc */
-
-program
-{
- if_args
- {
-  for_args
-  {
-   if this_arg[0] == '-')
-   {
-    printf("Command line switch: -%c ",ptr[1]);
-    if (next_arg) then
-    {
-     echo("followed by: ",next_arg);
-     skip_next;
-    }
-    print("");
-   }
-   else
-    print("Standalone argument: ",ptr); 
-  }
- }
- else
-  print("Bleeeeh, no arguments supplied... :-(");
-}
This page took 0.11499 seconds and 4 git commands to generate.