diff --git a/README.md b/README.md new file mode 100644 index 0000000..4a71400 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# cs340-git-demo +Git presentation demo repo + +You want a readme? I'm sure you do + +bold text + +italic text + +# big text + +-noah diff --git a/dontopenthis.py b/dontopenthis.py new file mode 100644 index 0000000..d994aff --- /dev/null +++ b/dontopenthis.py @@ -0,0 +1 @@ +##why did you open this diff --git a/hello.py b/hello.py index 72647ca..9d32ae3 100755 --- a/hello.py +++ b/hello.py @@ -1,11 +1,46 @@ + #!/usr/bin/env python3 +# this is a test comment + +# aaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbb def helloworld(): - pass + print('hello') + print("What up dude") + print("Hello") + print("Hello, World!") + #why are we still here, just to suffer + print("Hello world!") + print("Hello!") + print("Hello World") + print("hallo, welt!") + print("hi") +#help me I am trapped somewhere and only have access to this terminal + #this + print("Hello World!") + print('helloworld') + print("hello") def add_numbers(x, y): - pass + #does + x = x + y + y = 1 + x + z = 1 + 1 + print(x + y) + return x + y + +def zoinks(zoinks): + print("Zoinks...") + zoinks(zoinks) + +def printnothing(a,b,c): + print("") if __name__ == '__main__': # do something! - pass + #or mabye not + # no it doesn't + print(":)") + helloworld() + + add_numbers(5, 10) diff --git a/junk.txt b/junk.txt new file mode 100644 index 0000000..ce01362 --- /dev/null +++ b/junk.txt @@ -0,0 +1 @@ +hello diff --git a/kishan.py b/kishan.py new file mode 100644 index 0000000..8f0ed19 --- /dev/null +++ b/kishan.py @@ -0,0 +1 @@ +print("Welcome to Kishan's World") \ No newline at end of file diff --git a/library.py b/library.py new file mode 100644 index 0000000..ffb7519 --- /dev/null +++ b/library.py @@ -0,0 +1,7 @@ +def turtlestuff: + import turtle + screen = turtle.Screen() + t = turtle.RawTurtle(screen, 'turtle') + for i in range(36): + t.forward(10) + t.right(10) diff --git a/zonk.py b/zonk.py new file mode 100644 index 0000000..e416c75 --- /dev/null +++ b/zonk.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python3 + +def helloworld(): + pass + +def add_numbers(x, y): + x = x + y + pass + +if __name__ == '__main__': + # do something! + pass + +def zonks2(zonks2): + zonks2 = zonks2 + zonks1; + return zonks1; + \ No newline at end of file