preparing 0.9 version, rename to crl1.h
[svn/Cll1h/.git] / demos / arguments2.c
diff --git a/demos/arguments2.c b/demos/arguments2.c
deleted file mode 100644 (file)
index 63276cf..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "cll1.h"
-
-//try to run: ./arguments2 -f reload yyyy -?
-
-program
-{
- if_args then
- {
-  for_args
-  {
-   if_arg ("-?") then
-    print("This is just help!");
-   else if_arg ("-f") then
-   {
-    if (next_arg) then
-    {
-     print("Forced argument: ",next_arg);
-     skip_one;
-    }
-   }
-   else 
-    print("Normal argument: ",this_arg);
-  }
- }
- else
-  print("Bleeeeh, no arguments supplied... :-(");
-}
This page took 0.125653 seconds and 4 git commands to generate.