An open API service indexing awesome lists of open source software.

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

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++.