ch08, 09, 10: example files

This commit is contained in:
Luciano Ramalho
2020-06-11 14:58:15 -03:00
parent 42861b64d8
commit bf4a2be8b9
111 changed files with 4707 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
from clockdeco import clock
import fibo_demo
import fibo_demo_lru
@clock
def demo1():
fibo_demo.fibonacci(30)
@clock
def demo2():
fibo_demo_lru.fibonacci(30)
demo1()
demo2()