Getting Started Neocode is a user-friendly programming language created in Python. Funcionalities Perform Operations(Both binary and unary Operations) Can create and update variables. Can solve boolean operations using boolean operators if-elif-else ---> Conditional Statements Loop - while loop Syntax 1. create ---> To create and update the values of variables. e.g - create a = 2 create b = a+2 2. if-orif-otherwise ----> if-else implementation. 3. repeat ----> while loop 4. perform ---> Action 1. if a<3 perform ... actions 2. while a<10 perform ...actions 5. True/False ----> 1/0 6. Equal -----> ?= 3?=3 // output - 1 2?=2 // output - 0 7. show ------> get values of variables. show // shows values of all variables. show a // show value of variable a Working To run the code, bring all files in your system and run the "shell.py" file on your code-editor. Sample outputs