No description
- Scheme 87.8%
- Makefile 12.2%
| .gitignore | wip branch:main | |
| example.ss | wip branch:main | |
| main.ss | wip branch:main | |
| Makefile | wip branch:main | |
| README.md | wip branch:main | |
Begin
This is the start of learning/installing/using chez scheme.
I am using the latest OpenBSD release as my OS.
This Makefile will install chez in $HOME/chez. It can also install chez-ncurses which shows how libraries can be installed.
Full Install / test
make install
# pkg_add gcc and ln -s gcc egc ...
make install-ncurses
make main # this is a plain chez scheme program
make example # this is a chez scheme program that depends on the ncurses install
# this will run the repl
make repl
(import (ncurses)) ;; <-- this proves in the repl that ncurses is installed.
# remember ncurses is just an example of installing a lib
Look at scm/purse repo for first effort at using chez scheme.
Akku is a "next step" for now. For example ncurses is installed manually, but could be installed witk akku.
I had trouble installing akku on OpenBSD, but only tried quickly, I need to get the scheme / chez scheme basics down first.