Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zag-research/zag-smalltalk
Smalltalk VM Written in Zig with methods stored as type-annotated ASTs
https://github.com/zag-research/zag-smalltalk
compiler interpreter smalltalk zig
Last synced: 5 days ago
JSON representation
Smalltalk VM Written in Zig with methods stored as type-annotated ASTs
- Host: GitHub
- URL: https://github.com/zag-research/zag-smalltalk
- Owner: Zag-Research
- License: mit
- Created: 2021-02-25T07:40:57.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-25T11:33:28.000Z (4 months ago)
- Last Synced: 2024-07-25T13:01:53.378Z (4 months ago)
- Topics: compiler, interpreter, smalltalk, zig
- Language: Smalltalk
- Homepage:
- Size: 11.6 MB
- Stars: 126
- Watchers: 11
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zag-Smalltalk
Smalltalk VM Written in Zig with methods stored as type-annotated ASTs
Methods are re-constituted from the AST for edit windows.
No Interpreter; uses Threaded and CPS execution models interchangeablyMemory structure and some of execution principles loosely modelled on OpenSmalltalk VM
Eventually it wiil include a JIT compiler
More information in the [Documentation](Documentation)
Papers and Talks can be found [here](Documentation/papers)
(Previously called AST-Smalltalk, but since the implementation is in Zig, a rename seemed obvious.)
### Loading into Pharo (known to load with Pharo 13)
*very much work-in-progress at the moment*
```smalltalk
Metacello new
baseline: 'ASTSmalltalk';
repository: 'github://Zag-Research/Zag-Smalltalk:main';
load
```