1. 程式人生 > >用vscode寫博文

用vscode寫博文

test

Title

這是一篇測試效果的博文

第一次使用vscode寫博文,以前一直是用來寫寫程式碼偶爾寫Markdown,體驗一下,效果不錯就一直用下去

code

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

import (
    "fmt"
)
func main(){
    fmt.Println("hello world")
}

image