"""Exercise 20.2.3 — Function body not indented

Chapter 20: Common Pitfalls — Everyday Programming

This program should return the perimeter of a square and print it.

This program contains exactly one bug. Solution: sol_20_2_3.py
"""

def square_perimeter(side):
return 4 * side

print(square_perimeter(6))  # 24
