Squeak Smalltalk mapping

This commit is contained in:
Tony Garnock-Jones 2018-09-24 19:54:59 +01:00
parent e25b7dacbc
commit a9445b2ca7
1 changed files with 14 additions and 0 deletions

View File

@ -903,6 +903,20 @@ or `Record`s.
- `Set``set`
- `Dictionary``dict`
### Squeak Smalltalk
- `Boolean``true` and `false`
- `Float` ↔ perhaps a subclass of `Float`?
- `Double``Float`
- `SignedInteger``Integer`
- `String``WideString`
- `ByteString``ByteArray`
- `Symbol``WideSymbol`
- `Record` ↔ a simple data class
- `Sequence``ArrayedCollection` (usually `OrderedCollection`)
- `Set``Set`
- `Dictionary``Dictionary`
## Appendix. Why not Just Use JSON?
<!-- JSON lacks semantics: JSON syntax doesn't denote anything -->