Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion socode.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,15 @@ def starefossen():

def jontonsoup():
print "There's always one more bug."


def fweakout(x):
print "Hello, is it me you're looking for?"
#simple prime function
for i in range(2,int(x**0.5)+1):
if x % i == 0:
return False
return True

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

indentation looks weird.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

True. In vim it looked great (4 spaces etc.) but in this commit it seems messed up. I'm going to fix this tonight.

def monsdar():
print "Hello?..."
print " ...yes, this is dog!"
Expand Down Expand Up @@ -1070,6 +1078,7 @@ def nazgu1():
thisishugo()
lcynot()
danielnr()
fweakout(9009)
ncerminara(3)
spratt()
aturcino()
Expand Down