#include "tutorial.h" start integer i = 5; print("i = "); print(i); // prints the value of 'i' to the screen i = 6; print(", now i = "); print(i); end