Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to write console applications in scheme?

Tags:

console

scheme

Does anyone know of any semi-portable way to write console applications (e.g. basic animation) in scheme? I heard of an ncurses wrapper but I couldn't find anything.

like image 760
Lily Chung Avatar asked Jul 24 '11 02:07

Lily Chung


2 Answers

You can't do any GUI in a portable way in Scheme -- because you only get very basic file IO.

like image 157
Eli Barzilay Avatar answered Oct 17 '22 20:10

Eli Barzilay


Depends on your scheme of choice. Chicken Scheme, for instance, has good ties with C and has various Curses libraries. See their code examples:

  • ncurses
  • mojo, curses for the lazy :)
like image 29
mike3996 Avatar answered Oct 17 '22 20:10

mike3996