Added an example fractal and the main file

This commit is contained in:
TheDevKiller 2019-02-25 18:06:03 +01:00
parent 7fb42b383e
commit 138f301543
2 changed files with 5 additions and 0 deletions

BIN
fractal.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

5
main.py Normal file
View File

@ -0,0 +1,5 @@
from PIL import Image
# Display the generated fractal
img = Image.open("fractal.png")
img.show()