diff --git a/functest.py b/functest.py deleted file mode 100644 index 4cc9427..0000000 --- a/functest.py +++ /dev/null @@ -1,13 +0,0 @@ -def f(): - print("very secret variable leaked") - -def g(): - #h = lambda : (print("hi"), print("hello")) - yn(f, "leak secret? ") - -def yn(task, question): - x = input(question) - if x == "y": - task() - -g()