Zig icon
Zig icon

Zig

Zig is an open-source programming language designed for robustness, optimality, and clarity.

Cost / License

  • Free
  • Open Source

Application type

Platforms

  • Mac
  • Windows
  • Linux
  • BSD
-
No reviews
17likes
2comments
0news articles

Features

Suggest and vote on features

Properties

  1.  Lightweight
  2.  Optimal performance

Features

  1.  Compile Time Code Execution
  2.  Manual memory management
  3.  Typesafe
  4.  X86/x64 Compatibility
  5.  ARM support
  6.  Concurrent work
  7.  Portable
  8.  Command line interface
  9.  Unit Testing
  10.  Works at kernel level
  11.  Low memory usage
  12.  Systems programming
  13.  Generics
  14.  Error Logging
  15.  Asynchronous

 Tags

Zig News & Activities

Highlights All activities

Recent News

No news, maybe you know any news worth sharing?
Share a News Tip

Recent activities

  • EdontCar rated Zig  
  • EdontCar and namdx1987 liked Zig
  • Mussel icon
    POX added Zig as alternative to Mussel
  • thejfex, pongo and Eighty-nine liked Zig
  • Gleam Language icon
    POX added Zig as alternative to Gleam Language
Show all activities

Zig information

  • Developed by

    US flagAndrew Kelley
  • Licensing

    Open Source (MIT) and Free product.
  • Alternatives

    18 alternatives listed
  • Supported Languages

    • English

AlternativeTo Categories

DevelopmentOS & UtilitiesSystem & Hardware

GitHub repository

  •  42,578 Stars
  •  3,115 Forks
  •  3687 Open Issues
  •   Updated  
View on GitHub

Our users have written 2 comments and reviews about Zig, and it has gotten 17 likes

Zig was added to AlternativeTo by dovee on and this page was last updated .

Comments and Reviews

   
 Post comment/review
Top Positive Comment
IamPyu
1

Coming from C, Zig is a great language! It still somewhat feels like C, but with nice features from languages like Go or Rust sprinkled on.

RemovedUser
2

Zig has a potential at rivalling C and Rust! Maybe even GO!

Review by a new / low-activity user.

Featured in Lists

List by Buster_Blue with 8 apps, updated

What is Zig?

Feature Highlights

Small, simple language. Focus on debugging your application rather than debugging your knowledge of your programming language. Ships with a build system that obviates the need for a configure script or a makefile. In fact, existing C and C++ projects may choose to depend on Zig instead of e.g. cmake. A fresh take on error handling which makes writing correct code easier than writing buggy code. Debug mode optimizes for fast compilation time and crashing with a stack trace when undefined behavior would happen. Release mode produces heavily optimized code. What other projects call "Link Time Optimization" Zig does automatically. Compatible with C libraries with no wrapper necessary. Directly include C .h files and get access to the functions and symbols therein. Provides standard library which competes with the C standard library and is always compiled against statically in source form. Compile units do not depend on libc unless explicitly linked. Nullable type instead of null pointers. Tagged union type instead of raw unions. Generics so that one can write efficient data structures that work for any data type. No header files required. Top level declarations are entirely order-independent. Compile-time code execution. Compile-time reflection. Partial compile-time function evaluation with eliminates the need for a preprocessor or macros. The binaries produced by Zig have complete debugging information so you can, for example, use GDB to debug your software. Mark functions as tests and automatically run them with zig test. Friendly toward package maintainers. Reproducible build, bootstrapping process carefully documented. Issues filed by package maintainers are considered especially important. Cross-compiling is a primary use case. In addition to creating executables, creating a C library is a primary use case. You can export an auto-generated .h file. Standard library supports Operating System abstractions for: x86_64 linux

Official Links