https://github.com/vyorkin/okasaki-smlnj
My notes and solutions for "Purely Functional Data Structures" book by Chris Okasaki (in SML/NJ).
https://github.com/vyorkin/okasaki-smlnj
okasaki smlnj
Last synced: 8 months ago
JSON representation
My notes and solutions for "Purely Functional Data Structures" book by Chris Okasaki (in SML/NJ).
- Host: GitHub
- URL: https://github.com/vyorkin/okasaki-smlnj
- Owner: vyorkin
- License: mit
- Created: 2020-07-12T15:29:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-08-23T08:34:33.000Z (about 1 year ago)
- Last Synced: 2024-08-23T09:46:23.600Z (about 1 year ago)
- Topics: okasaki, smlnj
- Language: Standard ML
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Okasaki in SML/NJ
My notes and solutions for "Purely Functional Data Structures" book by Chris Okasaki (in SML/NJ).
## REPL
Increasing print length and depth:
```
@- Control.Print.printLength = 100;
@- Control.Print.printDepth = 100;
```
Loading source file:
```
@- use "ch02/unbalanced_set.sml"
```