diff --git a/module2_examples.py b/module2_examples.py
new file mode 100644
index 0000000000000000000000000000000000000000..3e362169698931f4ccf0176b0fe89dabdd12edce
--- /dev/null
+++ b/module2_examples.py
@@ -0,0 +1,12 @@
+#%% module 2, example 0
+
+import math
+
+
+a = 50
+b = math.sqrt(a)
+print(b)
+
+#%% composition
+
+print(math.sqrt(50))
\ No newline at end of file