From 9c9a38039cd114e02dfc46dc08fb355067ae1d25 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 24 Nov 2015 19:30:08 +0100 Subject: [PATCH] Moved code to a function --- some_code_file.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/some_code_file.py b/some_code_file.py index 3db9333..06028c9 100644 --- a/some_code_file.py +++ b/some_code_file.py @@ -1 +1,4 @@ -print(5) +def print_5(): + print(5) + +print_5()