https://github.com/scrybelang/scrybe
Scrybe is the other Scratch compiler
https://github.com/scrybelang/scrybe
compiler programming-language python scratch
Last synced: about 1 month ago
JSON representation
Scrybe is the other Scratch compiler
- Host: GitHub
- URL: https://github.com/scrybelang/scrybe
- Owner: ScrybeLang
- License: agpl-3.0
- Created: 2024-08-01T21:10:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-26T14:32:21.000Z (12 months ago)
- Last Synced: 2025-08-16T09:49:24.922Z (5 months ago)
- Topics: compiler, programming-language, python, scratch
- Language: Python
- Homepage: https://scrybelang.github.io/
- Size: 157 KB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `Scrybe`, the Other Scratch Compiler
* Made by [aespibr](https://scratch.mit.edu/users/aespibr/) on Scratch
> [!IMPORTANT]
> Read the [documentation](https://scrybelang.github.io/)!
[Scrybe](https://github.com/ScrybeLang/Scrybe) is a text-based language implemented in Python that ~~transpiles~~ compiles into a Scratch project. This project is based on [PLY](https://pypi.org/project/ply/) and [ScratchGen](https://pypi.org/project/ScratchGen/), and was inspired by [goboscript](https://github.com/aspizu/goboscript).
Much like goboscript, Scrybe allows you to create Scratch projects with a text editor or IDE instead of manually dragging and dropping blocks together. This comes with the benefits of easier version control, code being easier to debug (Scrybe has error messages), and being familiar to programmers who are used to text-based coding.
Also similarly to goboscript, Scrybe does much more than simply map each line of code to a block in the script editor. It has features such as function return values, broadcast messages, and dynamic variable scoping. Additionally, the syntax is mostly similar to languages such as JavaScript and C++.