1
1
Fork
You've already forked chez-start
0
No description
  • Scheme 87.8%
  • Makefile 12.2%
2024年12月25日 10:59:42 -05:00
.gitignore wip branch:main 2024年12月25日 10:59:12 -05:00
example.ss wip branch:main 2024年09月13日 00:27:41 -04:00
main.ss wip branch:main 2024年12月13日 16:01:40 -05:00
Makefile wip branch:main 2024年12月25日 10:59:12 -05:00
README.md wip branch:main 2024年12月25日 10:41:46 -05:00

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.