Click the Green Flag to start. Follow the instructions given by Paul the Axolotl
Credits to Juliet and Kandra for helping us create the binary to decimal custom block. Axolotl picture is from google or more specifically Pinterest DEFINE PROCEDURE “DELETE INPUT” { DISPLAY (Delete from (A) Base conv. History or (B) Calc. History) IF (ANSWER=A) { PROCEDURE (Delete Base converter history) } ELSE { IF (ANSWER=A) { DISPLAY ((A) delete entire list or (B) delete selected inputs?) AND WAIT IF (ANSWER = YES) { REMOVE (Calc. History, all) WAIT (1) SEC PROCEDURE (START) } } ELSE { IF (ANSWER= NO) { DISPLAY (How many inputs do you want to delete) AND WAIT Number of inputs ANSWER REPEAT (number of inputs) TIMES { DISPLAY (Which input would you like to delete) AND WAIT Delete input ANSWER REMOVE (Calc. History, delete input) DISPLAY (Item (Delete input) has been deleted from Calc. History) } WAIT (1) SEC PROCEDURE (START) } ELSE { DISPLAY (Your input was not recognized.) PROCEDURE (DELETE INPUT) } } } DEFINE PROCEDURE “Subtract” { DISPLAY (Input your first number) AND WAIT Input1 ANSWER DISPLAY (Input your second number) AND WAIT Input2 ANSWER DISPLAY ((Input1)(+(Input2) = (Input1-Input2)) FOR 3 SECS APPEND (Calc. History, (Input1)(+(Input2) = (Input1-Input2)) WAIT (1) SEC PROCEDURE (START) }