A place to hold mainly reading notes, and some technical stuff occasionally. 这里主要是一些读书笔记、感悟;还有部分技术相关的内容。
目录[-]
Link This is a link for a website.
This is for Italic Text
This is for Bold Text
while here is a code block, if you are a programmer, you will definitely like it
public class SayHi {
// Java
public static void main(String[] args) {
System.out.println("Hi, Java");
}
}
public class SayHi {
// C#
public static void main(string[] args) {
Console.WriteLine("Hi, C#");
}
}
// JavaScript
function sayHi() {
alert("Hi, JavaScript");
}
# Python
def print_hi():
print('Hi, Python')
In all, the above is the basic of Markdown Syntax. Quite simple.