From 09d5a4a95f0a57c7b3c662a5363b8b0b75777008 Mon Sep 17 00:00:00 2001 From: Eric Douglas Date: Sat, 3 May 2014 22:10:08 -0300 Subject: [PATCH] first commit --- .../hello.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 archives/01-introduction-to-computer-science-and-programming/hello.py diff --git a/archives/01-introduction-to-computer-science-and-programming/hello.py b/archives/01-introduction-to-computer-science-and-programming/hello.py new file mode 100644 index 0000000..88c358f --- /dev/null +++ b/archives/01-introduction-to-computer-science-and-programming/hello.py @@ -0,0 +1,8 @@ +print "hello python!" + +print 4 + 4 + +import math +print math.sqrt(16) +print math.pow(3, 2) +print math.cos(0)