Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Quick start guide in README.wiki |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7f6f93c47b9cb5613e9247f897009356 |
User & Date: | alaric 2012-07-10 10:38:38 |
Context
2012-07-13
| ||
12:34 | New metadata files check-in: ef1b90a5fc user: alaric tags: trunk | |
2012-07-10
| ||
10:38 | Quick start guide in README.wiki check-in: 7f6f93c47b user: alaric tags: trunk | |
10:11 | Elaborated the README a bit, with more idealism! check-in: 85ab757886 user: alaric tags: trunk | |
Changes
Changes to README.wiki.
︙ | ︙ | |||
21 22 23 24 25 26 27 28 29 | a dashboard with moving gauges and charts of previous values. They can migrate towards solving "real problems" and producing useful software in a series of tractable steps. They can develop the confidence to leave the simple interactive turtle graphics environment and produce other kinds of software, such as command-line tools, network daemons, and Web applications, without needing to overcome any fundamental hurdles. Please see [https://wiki.call-cc.org/eggref/4/simple-graphics|the egg page in the Chicken Wiki for the documentation]. | > > > > > > > > > > > > > > > > > > > > > | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | a dashboard with moving gauges and charts of previous values. They can migrate towards solving "real problems" and producing useful software in a series of tractable steps. They can develop the confidence to leave the simple interactive turtle graphics environment and produce other kinds of software, such as command-line tools, network daemons, and Web applications, without needing to overcome any fundamental hurdles. To get started, install Chicken Scheme from your package manager, as well as the SDL and Cairo libraries. You might also need to install additional the SDL_gfx library if it isn't bundled with SDL on your platform. Then install simple-graphics with the following command: <pre>chicken-install -s simple-graphics</pre> If you get any errors about linkage problems, you might not have all of the required bits of SDL and Cairo installed; generally, a Google search for the error message you get and the name of your operating system will help! Finally, when the install is complete, you can start drawing pictures with the following commands: <pre>csi (use simple-graphics) (forward 5)</pre> Please see [https://wiki.call-cc.org/eggref/4/simple-graphics|the egg page in the Chicken Wiki for the documentation]. |