Experimentell: Erzeugen des Dockercontainers

This commit is contained in:
Olli Graf
2024-01-19 10:07:29 +01:00
parent d6d3c54aa8
commit f7110aa125
9 changed files with 983 additions and 0 deletions

12
docker/fib/fib_gen.py Normal file
View File

@@ -0,0 +1,12 @@
import sys
def fib_generator():
a,b = 0,1
while True:
yield a
a,b = b, a+b