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.
- Host: GitHub
- URL: https://github.com/rdiachenko/mandelbrot
- Owner: rdiachenko
- License: gpl-3.0
- Created: 2024-05-27T06:38:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T20:02:54.000Z (about 2 years ago)
- Last Synced: 2025-02-16T08:16:22.084Z (over 1 year ago)
- Topics: mandelbrot, programming-languages
- Language: Zig
- Homepage:
- Size: 127 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mandelbrot
Exploring various programming languages by building and plotting the Mandelbrot set.

## 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
```