Hello World!
This post is just to test Rust syntax highlighting on GitHub page. Here is a valid syntax in Rust.
let lambda = || || || "Hello, World!";
Let’s try with main() function.
fn main() {
println!(
"{}",
(|| || || || || || || "Hello, World!")()()()()()()()
);
}
Written on January 30, 2019