Meme detail
About this meme
Text detected in the image
goboscript goboscript is the Scratch compiler. It lets you write Scratch projects in a text-based programming language. It outputs .sb3 files which can be opened in Scratch or Turbowarp. It is written in Rust and is designed to have fast compile times. goboscript is text-based, so you can use Visual Studio Code to write Scratch projects, you can even use Github Copilot to help you write Scratch projects. goboscript also performs optimizations, has a powerful macro system which lets you do meta-programming. It even finds errors in your Scratch projects before you run them. GitHub Repository You can install it if you have the Rust toolchain. cargo install goboscript Example 53 54 onflag { 55 n = 10; 56 delete sequence; 57 add 1 to sequence; 58 add 1 to sequence; 59 repeat n - 2 { 60 last = sequence[length sequence]; 61 second_last = sequence[length sequence - 1]; 62 add last + second_last to sequence; 63 64 nth_term = sequence[length sequence]; 65 66 when clicked set n to 10 delete all of sequence add to sequence add to sequence repeat set last to item length of sequence of sequence set second_last to item length of sequence of sequence add last second_last to sequence set nth_term to item length of sequence of sequence