前期: Go-TG-Bot开发 – Lean Demo (iepl.cc)
本章完成内容
- 配置CodeServer
- 安装Golang
安装Golang
参考:如何在 Debian 10 | 上安装 Go数字海洋 (digitalocean.com) 将其中 go1.12.7.linux-amd64.tar.gz 换成最新版本
配置CodeServer
在浏览器中打开CodeServer并登录,点击插件,安装中文插件和go插件
新建一个文件,右下角应该会弹出需要安装拓展,直接点击Install All即可
我们初始化一下go mod init
go mod init demo1
然后输入一段代码按下F5执行试一下,不出意外就会显示Hello, World!了
package main
import "fmt"
func main() {
fmt.Printf("Hello, World!\n")
}
Comments NOTHING