// Arithmetic, function calls and imports! import std::print; fn main() { let test = 9; let simpleAdd = 2 + 2; let simpleMult = 7 * 2; let arithmetic = 3 + 2 * 5 + 1 * 2; return arithmetic + simpleMult * arithmetic; }