diff --git a/README.md b/README.md index 24d568a..8a71716 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,13 @@ Bython is a Python preprosessor which translates curly brackets into indentation ```python def print_message(num_of_times) { - for i in range(num_of_times) { - print("Bython is awesome!"); - } +for i in range(num_of_times) { +print("Bython is awesome!"); +} } if __name__ == "__main__" { - print_message(10); +print_message(10); } ```