Click see inside to edit the file. Click the green flag to compile the code. This project doesn't run the code! It only compiles it. It converts the file into a string that will be read for running. It currently supports: - Functions: print() - Strings: 'hello' - Integers: 100 - Floats: 3.14 - Names: score - Lists: [1, 2, 3] - Dictionaries: {'name':'Bob', 'age':30} - Booleans: True / False - Absence of value: None - Indexes: 'abc'[0] - Slices: 'abcde'[0:3] - import (...): import random - from (...) import (...): from time import sleep To add: - Conditions: if, elif, else - Loops: while, for - Definitions: def, return - Assigning and changing variables - Operators: + - * / ** // or and not in is - Inbuilt dot functions like .replace(), .append() - Triple quote strings """ . . . """ or ' ' ' . . . ' ' ' - And much more...