I am starting this blog, even though I do not really know what I am doing yet.

I see engineers blogging and sharing what they learn. It looks cool, and it feels like a good habit. Maybe it will help me learn faster. Maybe it will be useless. I will see.

I use Java, so most examples will be Java.

Starting with the basic one.

java
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, world!");
    }
}