Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/python/function
diff options
context:
space:
mode:
Diffstat (limited to 'data/python/function')
-rw-r--r--data/python/function5
1 files changed, 5 insertions, 0 deletions
diff --git a/data/python/function b/data/python/function
new file mode 100644
index 0000000..18e8e91
--- /dev/null
+++ b/data/python/function
@@ -0,0 +1,5 @@
+def square(x):
+ print x * x
+
+square(3)
+square(4)