szc3h9.github.io

szc3h9's blog

vuePress-theme-reco    2022 - 2024
szc3h9.github.io szc3h9.github.io

Choose mode

  • dark
  • auto
  • light
Home
Docs
  • geektime
Category
  • dev
  • essay
  • geektime
  • others
  • solutions
  • system
TimeLine
Tag
About
  • resume
  • donate
author-avatar

35

Articles

23

Tags

Home
Docs
  • geektime
Category
  • dev
  • essay
  • geektime
  • others
  • solutions
  • system
TimeLine
Tag
About
  • resume
  • donate
  • Go

    • Go
    • 介绍
    • 实现 "Fibonacci Sequence"
    • 寻找最长不含有重复字符串的子串
    • 第一个Go程序 “hello world”
    • 配好环境:选择一种最适合你的Go安装方法

第一个Go程序 “hello world”

vuePress-theme-reco    2022 - 2024

第一个Go程序 “hello world”

7/31/2022 go

# 第一个Go程序 “hello world”

package main

import "fmt"

func main() {
    fmt.Println("hello, world")
}
1
2
3
4
5
6
7

寻找最长不含有重复字符串的子串 配好环境:选择一种最适合你的Go安装方法