1 2 3 4 5 6 7 8
let print_input = (input) => { print(input); return input; }; let main = () => { return print_input(7); };