# TODO: implement factorial() so that `factorial n` prints n! (1 for n <= 1).
factorial() { echo 0; }
