Every project starts with a hello world, so it felt right to open this journal with one too.
In Rust:
fn main() {
println!("Hello, world! Greetings from Lauver.");
}
And in TypeScript:
const greet = (name: string): string => `Hello, ${name}!`;
console.log(greet("world"));
That’s it for now. More to come.

