Sync computers

This commit is contained in:
2026-02-28 18:55:10 +01:00
parent c3eb93e701
commit 9a983c56f3
29 changed files with 1564 additions and 28 deletions

View File

@@ -6,8 +6,8 @@ fn main() {
let mut test = String::new();
test.push('A');
test.push('B');
for _ in 0..50 {
for _ in 0..100 {
test.push('C');
}
println!("Hello from PIC program loaded dynamically with custom std and a better justfile, and syscalls !");
println!("Hello from PIC program loaded dynamically with custom std and a better justfile, and syscalls ! {}", test);
}