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
corpora/functions.py
master
Ben Kurtovic
12 years ago
parent
6331c426d2
commit
2e597b31d2
1 changed files
with
7 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
corpora/functions.py
+ 7
- 0
corpora/functions.py
View File
@@ -0,0 +1,7 @@
def f1(a):
return str(a)
def f2(a):
return (lambda i: len(str(i)))(a)
corpus = [f1, f2]
Write
Preview
Loading…
Cancel
Save