Zig (linguaggio di programmazione)
Zig linguaggio di programmazione | |
---|---|
Autore | Andrew Kelley |
Data di origine | 8 febbraio 2016[1] |
Ultima versione | 0.13.0 (6 giugno 2024) |
Utilizzo | general purpose |
Paradigmi | imperativo procedurale, funzionale |
Tipizzazione | statica, forte |
Estensioni comuni | .zig |
Influenzato da | C, C++, LLVM IR, Go, Rust, JavaScript |
Implementazione di riferimento | |
Licenza | Licenza MIT |
Sito web | ziglang.org/ |
Zig è un linguaggio di programmazione imperativo general purpose.
Ideato come alternativa moderna al C[2][3][4][5][6][7] e parzialmente ispirato a Rust,[8][9] Zig include diverse funzionalità a basso livello (come puntatori,[10] packed structs, interi di dimensione arbitraria[11]). Zig è un linguaggio compilato e fa uso di tipizzazione statica, con inferenza di tipi, tipi generici, e riflessione.[12]
Il compilatore Zig è software libero distribuito sotto licenza MIT.[13] È un compilatore self-hosting, essendo implementato in Zig e C++, e usa LLVM come back-end.[14][15][16][17] Il compilatore Zig permette anche la generazione di codice C e C++[18] (Nim supporta l'uso di Zig come back-end per la generazione di codice in questi linguaggi).[19]
Esempi
[modifica | modifica wikitesto]Hello World
[modifica | modifica wikitesto]// zig version 0.6
const std = @import("std");
pub fn main() !void {
const stdout = std.io.getStdOut().outStream();
try stdout.print("Hello, {}!\n", .{"world"});
}
Lista concatenata
[modifica | modifica wikitesto]fn LinkedList(comptime T: type) type {
return struct {
pub const Node = struct {
prev: ?*Node,
next: ?*Node,
data: T,
};
first: ?*Node,
last: ?*Node,
len: usize,
};
}
pub fn main() void {
var node = LinkedList(i32).Node {
.prev = null,
.next = null,
.data = 1234,
};
var list = LinkedList(i32) {
.first = &node,
.last = &node,
.len = 1,
};
}
Note
[modifica | modifica wikitesto]- ^ Andrew Kelley, Introduction to the Zig Programming Language, su andrewkelley.me. URL consultato l'8 novembre 2020.
- ^ (EN) Zig has all the elegant simplicity of C, minus all the ways to shoot yourself in the foot, su JAXenter, 31 ottobre 2017. URL consultato l'11 febbraio 2020.
- ^ (EN) Tired of C? New programming language Zig aims to be more pragmatic and readable, su jaxenter.com, 19 ottobre 2017. URL consultato il 22 aprile 2020.
- ^ (EN) Serdar Yegulalp, New challenger joins Rust to topple C language, su InfoWorld, 29 agosto 2016. URL consultato l'11 febbraio 2020.
- ^ Zig language and C, su Sina Corp, 12 luglio 2020. URL consultato il 12 agosto 2020.
- ^ (EN) Mozilla's Observatory, the Zig programming language, and uSens' VR/AR SDK—SD Times news digest: Aug. 29, 2016, su SD Times, 29 agosto 2016. URL consultato l'11 febbraio 2020.
- ^ The Zig Programming Language, su ziglang.org. URL consultato l'11 febbraio 2020.
- ^ (EN) Sudo Null Company, Sudo Null - IT News for you, su SudoNull. URL consultato l'11 febbraio 2020.
- ^ Andrew Kelley, Unsafe Zig is Safer Than Unsafe Rust, su andrewkelley.me. URL consultato l'11 febbraio 2020.
- ^ Documentation - The Zig Programming Language, su ziglang.org. URL consultato il 24 aprile 2020.
- ^ (EN) Tim Anderson 24 Apr 2020 at 09:50, Keen to go _ExtInt? LLVM Clang compiler adds support for custom width integers, su theregister.co.uk. URL consultato il 24 aprile 2020.
- ^ The Zig Programming Language, su ziglang.org. URL consultato l'11 febbraio 2020.
- ^ (EN) ziglang/zig, su GitHub. URL consultato l'11 febbraio 2020.
- ^ (EN) SD Times news digest: C++20 concepts in Visual Studio 2010 version 16.3, Bootstrap to drop IE support, and Zig 0.60 released, su SD Times, 14 aprile 2020. URL consultato il 19 aprile 2020.
- ^ (EN) A Reply to _The Road to Zig 1.0_, su gingerbill.org, 13 maggio 2019. URL consultato l'11 febbraio 2020.
- ^ ziglang/zig, Zig Programming Language, 11 febbraio 2020. URL consultato l'11 febbraio 2020.
- ^ The Zig Programming Language, su ziglang.org. URL consultato l'11 febbraio 2020.
- ^ 0.6.0 Release Notes · The Zig Programming Language, su ziglang.org. URL consultato il 19 aprile 2020.
- ^ (EN) Add support for 'zig cc' as C compiler. by hessammehr · Pull Request #13757 · nim-lang/Nim, su GitHub. URL consultato il 19 aprile 2020.
Altri progetti
[modifica | modifica wikitesto]- Wikimedia Commons contiene immagini o altri file su Zig
Collegamenti esterni
[modifica | modifica wikitesto]- (EN) Sito ufficiale, su ziglang.org.
- (EN) Zig, su GitHub.