An open API service indexing awesome lists of open source software.

https://github.com/rdiachenko/mandelbrot

Mandelbrot set in different programming languages.
https://github.com/rdiachenko/mandelbrot

mandelbrot programming-languages

Last synced: about 1 year ago
JSON representation

Mandelbrot set in different programming languages.

Awesome Lists containing this project

README

          

# Mandelbrot

Exploring various programming languages by building and plotting the Mandelbrot set.

![Mandelbrot Set](docs/mandelbrot-set.png "Mandelbrot Set Visualization")

## Zig

Step-by-Step Guide: [Exploring Zig Programming Language with The Mandelbrot Set](https://www.rdiachenko.com/posts/zig/exploring-ziglang-with-mandelbrot-set/).

Build, test and run:

```shell
cd zig-mandelbrot

zig build -Doptimize=ReleaseFast \
test \
run --summary all \
-- mandelbrot.png 4000x3000 -1.8,1 0.5,-1
```