Turn on turbo mode (shift + click the flag) Hold Space. This is my attempt to make Conway's Game of Life in as little blocks as possible. (That doesn't mean it's efficient...) If you want to see mine with much more reasonable and readable code but still few blocks, here's one with 42: https://scratch.mit.edu/projects/865854683/ And if you want to see my good (but old) one it's here: https://scratch.mit.edu/projects/703356091/
No, I did not manually create each costume lol... I just made a little C++ script for that https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life It's a cellular automata by John Horton Conway I reduced the rules to: If a live cell has 2 neighbors, it stays alive. If any cell has 3 neighbors, it lives. Otherwise the cell remains/becomes dead. #conway #life #codegolf #code-golf #block #code golf #idek