Small updates

This commit is contained in:
Tony Garnock-Jones 2021-03-16 14:36:46 +01:00
parent adfb1822ac
commit 7072f19407
3 changed files with 19 additions and 1 deletions

18
implementations/README.md Normal file
View File

@ -0,0 +1,18 @@
# Preserves Implementations
Here you may find:
- [javascript](javascript/), an implementation in TypeScript,
compiling to JavaScript, for node.js and the Browser.
- [python](python/), an implementation for Python 2.x and 3.x.
- [racket](racket/), an implementation for Racket 7.x and newer
(though older Rackets may also work with it).
- [rust](rust/), an implementation for Rust that interoperates with
serde.
Other implementations are also available:
- [Preserves for Squeak Smalltalk](https://squeaksource.com/Preserves.html)

Binary file not shown.

View File

@ -28,7 +28,7 @@
7: "decodeText(encodeText(value)) = back"
8: "decodeText(encodeText(forward)) = back"
9: "encodeBinary(forward) = binary"
10: "canonicallyEncodeBinary(forward) = binary"
10: "canonicallyOrderedEncodedBinaryWithAnnotations(forward) = binary"
11: "encodeBinary(annotatedValue) = binary"
12: "decodeText(text) fails with a syntax error (NB. never with EOF)"