Write a function `countdown(n)` that prints each integer from `n` down to `1` inclusive, one per line, and then returns the string `"Go!"`. For example, calling `countdown(3)` should print `3`, `2`, `1` on separate lines and then return `"Go!"`. If `n` is less than or equal to 0, the function should print nothing and just return `"Go!"`.
Constraints
- `n` is an integer (may be negative or zero)
- Time complexity: O(n)
- Space complexity: O(1)