Hello world
2026-06-14
1 min read

I was confused what to write in my first post. But at one point I realized that instead of over-thinking, I can just start with a typical hello-world, similar to how most people enter the programming world.
So, to start, here's a hello world program written in C, which was essentially my first programming language, long time ago when I was still a 12 year old.
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}But that's kinda boring when I have been learning the Rust programming language recently. So, here's a hello world program written in Rust, to compensate for it. Haha!
fn main() {
println!("Hello world!");
}I plan to write more and share my thoughts on various topics, as well as write-ups on my works in the coming future. So, stay tuned but for now, thank you for reading!