Welcome to Viper 3! A very cool coding language by squid1974 PLEASE USE TURBO MODE, AND READ THE INSTRUCTIONS BELOW!!! Instructions: -Use the tabs at the top to switch around -Everything is pretty self explanatory List of things you can do: -Printing: print("hello") --> hello Note: you can only print strings (variables with quotation marks) -Creating a variable: a = 5 --> creates a variable named a with value 5 -Two input operations a = 1 + 2 --> sets a to 3 -List of two input operations: a+b a-b a*b a/b a^b a%b (calculates the remainder of a/b) a and b (both inputs must be boolean, which means they are either true or false) a or b a == b (checks to see if a is equal to b, and returns either true or false) a < b a > b log(a,b) (takes the logarithm of b base a) index(a,b) (gets a letter of a string, or an item in an array. For example, a = index("hello",4) will create a variable named a with a value of "o") -Changing a variable You can use these five lines of code to change a variable: a+b a-b a*b a/b a^b -One input operations a = sqrt(4) --> sets a to 2 -List of one input operations: a = sqrt(b) a = cbrt(b) a = ceil(b) (sets a to the smallest integer greater than b) a = floor(b) (sets a to the biggest integer smaller than b) a = abs(b) (sets a to the absolute value of b) a = round(b) a = sin(b) a = cos(b) a = tan(b) a = len(b) (sets a to the length of b. b must be a string or an array) a = not(b) (if b is true, a is false. if a is false, b is true) -If statements if(a,b) -a must be a boolean (true or false), and b is the line number that the program will skip to, if a is true. -If/else statements if(a,b,c) -a must be a boolean (true or false), b is the line number that the program will skip to if a is true, and c is the line number that the program will skip to if a is false.