home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sml.zip / edit.ml < prev    next >
Text File  |  1993-08-09  |  264b  |  7 lines

  1. (* This "program" allows you to use an editor from sml.exe *)
  2. (* Change T to the name of the editor                      *)
  3. (* Does not work with smlpm.exe                            *)
  4.  
  5. fun edit name=system("T "^name);
  6. fun run name=(edit(name),use(name));
  7.