add: README, LICENSE and initial project structure
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m44s
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m44s
This commit is contained in:
0
src/ast.zig
Normal file
0
src/ast.zig
Normal file
0
src/lexer.zig
Normal file
0
src/lexer.zig
Normal file
1
src/parser.zig
Normal file
1
src/parser.zig
Normal file
@@ -0,0 +1 @@
|
||||
pub const lexer = @import("lexer.zig");
|
||||
6
src/root.zig
Normal file
6
src/root.zig
Normal file
@@ -0,0 +1,6 @@
|
||||
///! Parser for nf file contents. This library provides a lexer and parser and
|
||||
///! emits an AST of valid nf file contents. In case of invalid files,
|
||||
///! corresponding errors are returned. For detailed error messages refer to
|
||||
///! `errorMessage()`
|
||||
pub const ast = @import("ast.zig");
|
||||
pub const parser = @import("parser.zig");
|
||||
Reference in New Issue
Block a user