diff options
Diffstat (limited to 'examples/mandelbrot.sloth')
| -rw-r--r-- | examples/mandelbrot.sloth | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/mandelbrot.sloth b/examples/mandelbrot.sloth index 1765e8e..6bf7727 100644 --- a/examples/mandelbrot.sloth +++ b/examples/mandelbrot.sloth @@ -5,11 +5,10 @@ foreign fn as_int(x: Float) Int; foreign fn termpos(x: Int, y: Int) Void; fn main() Int{ - var size: Float = 200.0; + var size: Float = 1000.0; var maxVal: Float = 4.0; var maxIter: Float = 50.0; var plane: Float = 4.0; - # lmao var x: Float = 0.0; while x < size { var y: Float = 0.0; |
