Apply rustfmt formatting to fix long println! statement
All checks were successful
security-scanning / audit (push) Successful in 11s
Rust ZK Components Tests / test-rust-zk (push) Successful in 47s
AITBC CLI Level 1 Commands Test / test-cli-level1 (push) Successful in 11s

This commit is contained in:
aitbc1
2026-03-28 20:18:16 +01:00
parent f0581c78e6
commit 67f26070f0

View File

@@ -12,7 +12,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let b = pallas::Base::from(24); let b = pallas::Base::from(24);
let sum = a + b; let sum = a + b;
println!("✅ Basic field arithmetic working: {:?} + {:?} = {:?}", a, b, sum); println!(
"✅ Basic field arithmetic working: {:?} + {:?} = {:?}",
a, b, sum
);
println!("\n📊 Research Status:"); println!("\n📊 Research Status:");
println!(" - Environment setup: ✅ Complete"); println!(" - Environment setup: ✅ Complete");