Embedded programming language for Zig
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add .editorconfig

IamPyu d9fe1c23 9513eec7

+10
+9
.editorconfig
··· 1 + root = true 2 + 3 + [*] 4 + charset = utf-8 5 + end_of_line = lf 6 + 7 + [*.zig] 8 + indent_style = space 9 + indent_size = 4
+1
runtime/z.zig
··· 2 2 3 3 pub const Scope = zexa.lang.Scope; 4 4 pub const Value = zexa.lang.Value; 5 + pub const ValueType = zexa.lang.ValueType; 5 6 pub const AST = zexa.lang.AST; 6 7 pub const RuntimeError = zexa.lang.RuntimeError; 7 8