Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,4 @@ package-lock.json
.zig-cache/
zig-cache/
zig-out/
forth/target/
16 changes: 16 additions & 0 deletions forth/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions forth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "jansforth"
version = "0.1.0"
edition = "2021"

[dependencies]
libc = "0.2"
Comment thread
jburgy marked this conversation as resolved.

[[bin]]
name = "jansforth"
path = "jansforth.rs"
Loading