summaryrefslogtreecommitdiff
path: root/Examples/python/functor/runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/python/functor/runme.py')
-rw-r--r--Examples/python/functor/runme.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Examples/python/functor/runme.py b/Examples/python/functor/runme.py
index 7f6f2b649..69289a78b 100644
--- a/Examples/python/functor/runme.py
+++ b/Examples/python/functor/runme.py
@@ -12,5 +12,5 @@ for i in range(0, 100):
a(i) # Note: function call
b(math.sqrt(i)) # Note: function call
-print a.result()
-print b.result()
+print(a.result())
+print(b.result())