Starting something new can often feel daunting. Just knowing where to even place that first footstep can be overwhelming.

Thankfully in the software world when learning a new langauge we are taught at our coding births to begin our journey with a simple “hello, world”.

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

And so this must be how this blog begins.