newLISP Fan Club

Forum => newLISP in the real world => Topic started by: denis on March 26, 2012, 12:37:47 AM

Title: Colored output in REPL mode and (help) function
Post by: denis on March 26, 2012, 12:37:47 AM
Good european morning, folks!



Could anyone advice me how to make colored output in REPL (in Linux)?



Also I thought it would be good to have something like:

> (help curry)
Syntax: (curry func exp)

Transforms func from a function f(x, y) that takes two arguments into a function fx(y) that takes a single argument.  curry can be used on all functions taking two arguments.

Examples:
(set 'f (curry + 10))  → (lambda () (+ 10 (args 0)))
(map (curry list 'x) (sequence 1 5)) →  ((x 1) (x 2) (x 3) (x 4) (x 5))


for more comfortable learning of the language in the interactive mode. Plus it could be not only built-in functions, but also user-defined functions with help information somewhere around:



(define (my-func)

"...help information..."

....



or

# formatted help information

(define (my-func)

...
Title: Re: Colored output in REPL mode and (help) function
Post by: cormullion on March 26, 2012, 04:41:42 AM
For coloured text, you can try ANSI codes:


    (print "n27[0;33m")

These can work. They're all listed somewhere...



For the help suggestion, there have been many solutions posted on this forum (which doesn't mean that they're easy to find... :): here (//http), here (//http), here (//http),, here (//http)
Title: Re: Colored output in REPL mode and (help) function
Post by: denis on March 30, 2012, 02:21:39 AM
Ahha, thanks! I see there are a lot of threads related to my question.

Also notion of .init.lsp was new for me, great!