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