diff options
Diffstat (limited to 'examples/python/default.py')
-rw-r--r-- | examples/python/default.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/python/default.py b/examples/python/default.py index 4f023ea04..dcdf0f52d 100644 --- a/examples/python/default.py +++ b/examples/python/default.py @@ -1,2 +1,2 @@ -def main(): - pass
\ No newline at end of file +def square(num): + return num * num |