This website works better with JavaScript.
Home
Help
Sign In
ben
/
func-smash
mirror of
https://github.com/earwig/func-smash
Watch
1
Star
1
Fork
0
Code
Releases
0
Activity
Browse Source
Added a <= corpus to cms_and_ifs.py
master
Josh Hofing
12 years ago
parent
2c1b1ba24c
commit
19609c661e
1 changed files
with
5 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
corpora/cmps_and_ifs.py
+ 5
- 1
corpora/cmps_and_ifs.py
View File
@@ -6,4 +6,8 @@ def f2(a):
return True
return False
corpus = [f1, f2]
def f3(a):
if a <= 20:
return True
return False
corpus = [f1, f2, f3]
Write
Preview
Loading…
Cancel
Save