Hello, World!

2021 . Oct . 10 / updated 2021 . Nov . 03 / How to BlogNotes++ to self

Hello There!

Welcome to the first Post on this Blog. As a great tradition, it begins with a Hello, World! to make sure this works.

A Java HW!

Java
/**
 * Fun fact:
 * My first HelloWorld ever didn't work because I wrote Void instead of void,
 * and the Windows Notepad was not that helpful, so I didn't notice for a while.
 */
public class HelloWorld {
    public static void main (String args[]) {
        System.out.println("Hello, World!");
    }
}

A Vue HW!

Directly from their docs:

HTML
<script src="https://cdn.jsdelivr.net/npm/vue@2"></script>
<div id="app">
    {{ message }}
</div>
JS
var app = new Vue({
    el: '#app',
    data: {
        message: 'Hello Vue!'
    }
});
Comments
If you have any doubt or question, or know how to improve this post, please feel free to write a comment.