home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_01 / 1001114a < prev    next >
Text File  |  1991-11-22  |  1KB  |  43 lines

  1.  
  2. #
  3. # Second test menu: t2.mnu (compiles into t2.mnc)
  4. #
  5.  
  6. menu foo:
  7.     title "The MAIN Test Menu for my SECOND menu file"
  8.  
  9.     item fraz:
  10.         text "This is item FRAZ: run the pwd program (next is zot)"
  11.         help "This is a HELP line for item 1 - next item is zot"
  12.         action "pwd"
  13.         prompt
  14.         nextitem zot
  15.  
  16.     item:
  17.         text "This is item #2: run the editor on file foo (next is FRAZ)"
  18.         action "e foo"
  19.         nextitem fraz
  20.  
  21.     item zot:
  22.         text "item ZOT: list the directory (prompt)"
  23.         help "this is a help line for #2 "
  24.         action "dir"
  25.         prompt
  26.  
  27.     item text "GO TO MENU #2"
  28.         lmenu bar
  29.  
  30. endmenu
  31.  
  32.  
  33. menu bar:
  34.   title "This is the SECOND local menu in the SECOND test file"
  35.  
  36.     item text "here is the first item of the 2nd menu"
  37.     action "dir"
  38.  
  39.     item text "here is the SECOND item of the 2nd menu (with help)"
  40.     help "this is help for that second item of menu #2"
  41.     action "dir"
  42. endmenu
  43.