Hello, World!
2021 . Oct . 10 /
2021 . Nov . 03
/ How to BlogNotes++ to self
So it begins...
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!'
}
});
Hope you enjoy exploring this blog!