Changeset 14459 for src/Pugs/Help.hs

Show
Ignore:
Timestamp:
10/22/06 01:37:32 (2 years ago)
Author:
seano
Message:

* don't echo result in REPL when command ends with semicolon (like Matlab)
* change :e and :E to evaluate in current environment rather than clean
* add :er and :ER to use a clean environment (like old :e and :E)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Help.hs

    r12595 r14459  
    2929        putStrLn ":D <exp>        = show raw syntax tree of an expression" 
    3030        putStrLn ":e <exp>        = run a command, and ugly-print the result" 
     31        putStrLn ":er <exp>       = same, in a pristine environment" 
    3132        putStrLn ":E <exp>        = same, but evaluate in small steps" 
     33        putStrLn ":ER <exp>       = same, in a pristine environment" 
    3234        putStrLn "<exp>           = run a command" 
    3335