# Episode VII: The False Awakens > A long time ago in a galaxy far, > far away.... ## Remarks Just run it with: ``` $ ruby entry.rb ``` It will output "TRICK 2025". It has been tested under the following environment: ``` $ ruby --version ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [x86_64-linux] ``` ## Description The program consists of two parts: * an interpreter of a subset of [FALSE esolang](https://esolangs.org/wiki/FALSE) and * an obfuscated FALSE source code. ### FALSE interpreter The interpreter part is embeeded into an ASCII art, "TRICK 2025" shaped like the Star Wars logo. For more readable version, see `entry.clean.rb`. ### FALSE source code The FALSE source code is encoded to the following expression: ``` TrUE&FaLsE|TrUe&FaLse|TrUe&FAlSe|TrUE&FalSE|TrUe&FAlSe|TrUe&FaLse|TrUe&FaLse|TrUe&FaLse|TrUe&FaLse|TrUE&FAlsE|TrUe&FAlSE|TrUe&FALse| TrUE&FaLsE|TrUe&FAlSE|TrUe&FALse|TrUE&FalSe|TrUe&FALsE|TrUe&FALse|TrUE&FAlse|TrUe&FALsE|TrUe&FALse|TrUe&FALse|TrUE&FaLse|TrUE&FAlse| TrUe&FAlSe|TrUe&FALse|TrUE&FaLsE|TrUE&FalSe|TrUE&False|TrUE&FalSe|TrUe&FALSe|TrUe&FALSe|TrUe&FALSe|TrUe&FALSe|TrUE&FalSe|TrUE&FaLsE| TrUe&FAlSe|TrUe&FALse|false ``` Decoded version: ``` 5$*3*$$$$9+,7+,2-,8-,,48*,5202....25*, ``` FALSE is a simple stack-based esolang. For instance, * `5` pushes 5: `[5]` * `$` duplicates the top: `[5 5]` * `*` pushes the product: `[25]` * `3` pushes 3: `[25 3]` * `*` pushes the product: `[75]` * `$$$$` duplicates the top 4 times: `[75 75 75 75 75]` * `9` pushes 9: `[75 75 75 75 75 9]` * `+` pushes the sum: `[75 75 75 75 84]` * `,` writes the character: `[75 75 75 75]` (output `T`) * `7` pushes 9: `[75 75 75 75 7]` * `+` pushes the sum: `[75 75 75 82]` * `,` writes the character: `[75 75 75]` (output `R`) * ... The source code is full of Star Wars references and homages. ``` # A long time ago in a galaxy far, # far away.... ``` This is the iconic Star Wars opening phrase. ``` # (inside the eval'ed code) while(c