add rust template

This commit is contained in:
2025-03-16 16:43:10 +01:00
parent b83a8f2db9
commit fd9a64cc5b
7 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
use colored::*;
fn main() {
println!("{}", "Hello, world!".red());
println!("{}", "Hello, world!".green());
println!("{}", "Hello, world!".yellow());
println!("{}", "Hello, world!".blue());
println!("{}", "Hello, world!".purple());
println!("{}", "Hello, world!".cyan());
println!("{}", "Hello, world!".white());
}