1
0
Fork 0
mirror of https://git.sr.ht/~spicywolf/k2spice synced 2025-01-18 09:49:38 +00:00

doing silly things, ignore me

This commit is contained in:
Ren Kararou 2023-05-26 14:46:39 -05:00
parent c9808091cc
commit 091e496d15
Signed by: spicywolf
GPG key ID: B0BA4EEC0714F8E6
4 changed files with 27 additions and 11 deletions

12
Cargo.toml Normal file
View file

@ -0,0 +1,12 @@
[workspace]
members = [
# userspace commands
"usr/src/mei/true",
"usr/src/mei/pwd",
"usr/src/mei/yes",
"usr/src/mei/echo",
"usr/src/mei/printf",
# system
"usr/src/kei",
]

View file

@ -1,11 +0,0 @@
[workspace]
members = [
# userspace commands
"mei/true",
"mei/pwd",
"mei/yes",
"mei/echo",
# system
"kei",
]

View file

@ -0,0 +1,12 @@
[package]
name = "printf"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "printf"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}