click the green flag and the project will generate the first 100 terms of the Fibonacci Sequence ( https://en.wikipedia.org/wiki/Fibonacci_number )
thanks to this post: https://scratch.mit.edu/discuss/post/3238052/ by @onlyNones for giving me the idea to do this Q&A: Q: What's "code golf"? A: Code golf, essentially, is trying to accomplish a task with a computer with as little code as possible. Q: Why are the first two terms considered part of the initialization of the program? A: As stated by this webpage ( https://whatis.techtarget.com/definition/Fibonacci-sequence ), "the first two terms [of the Fibonacci sequence] are defined as 0 and 1 by convention". You cannot calculate the Fibonacci sequence in any sort of consistent manner without having 0 and 1 as a starting point--therefore, I would not consider the mandatory addition of 0 and 1 a the beginning to be part of the calculation process.