README.md (986B)
1 # guile-pstk 2 PS/TK version (http://mirror.informatimago.com/scheme/www.t3x.org/pstk/index.html) fixed to work fine on modern GNU Guile 3 4 ### Install 5 1. Install the "tcl" and "tk" packages through your package manager. 6 2. Copy pstk.scm to your project and use: 7 ```scheme 8 (use-modules (pstk)) 9 ``` 10 11 ### Examples 12 | Source | Screenshot | 13 | --- | --- | 14 | [hello.scm](./examples/hello.scm) | ![hello](./images/hello.png) | 15 | [hello-color.scm](./examples/hello-color.scm) | ![hello-color](./images/hello-color.png) | 16 | [themes.scm](./examples/themes.scm) | ![themes](./images/themes.png) | 17 | [ttt.scm](./examples/ttt.scm) | ![ttt](./images/ttt.png) | 18 | [weather](./examples/weather.scm) | ![weather](./images/weather.png) | 19 | [canvas](./examples/canvas.scm) | ![canvas](./images/canvas.png) | 20 | [slider](./examples/slider.scm) | ![slider](./images/slider.png) | 21 | [notebook](./examples/notebook.scm) | ![notebook](./images/notebook.png) | 22 23 ### Tested on 24 ``` 25 GNU Guile 3.0.1 26 GNU Guile 2.2.7 27 ```