Skip to content

NalaGinrut/guile-colorized

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

guile-colorized

Because Microsoft has aquired GitHub, as a congrats, I would like to migrate this project to GitLab and this repo will not be maintained on GitHub anymore: https://gitlab.com/NalaGinrut/guile-colorized

colorized REPL for GNU Guile NOTE: Now guile-colorized only support Guile-2.0.9 or higher! Drop your Guile-1.8.x from now on ;-)

INSTALL

Just type "sudo make install". (There's no need to run "make")

TEST

Copy these lines below to your REPL for test:

(use-modules (oop goops) (rnrs) (ice-9 colorized))
(activate-colorized)
`(this-is-a-symbol 1 2.5 2/5 #\c "asdf" ,(lambda () #t) ,(cons 1 2) ,
  (vector 1 2 3) #2u32@2@3((1 2) (3 4)) ,(make-bytevector 10 99) ,<object>)

ENJOY

And you may add these to your ~/.guile

(use-modules (ice-9 colorized))
(activate-colorized)

Enjoy it!