社区精选|前端如何入门 Go 语言
语法对比
import 包方式
// js
import a from "a";
import b from "b"
// go
import (
"a"
"b"
)
变量声明
// js
var a = "a";
let b = "b";
const c = "c";
// go
var x string = "x";
x := "x" // 自动把变量类型、声明和赋值都搞定了
条件
// js
if (a === "js") {
} else {
}
// go
if a == "go" {
} else {
}
循环
// js
for(let i = 0; i < 100; i++) {
}
// go
for i := 0; i < 100; i++ {
}
函数
// js
function helloJS() {
console.log("hello js");
learnJS();
}
function learnJS() {
console.log("learn js");
}
// go
func helloGo() {
fmt.Println("hello go");
}
func learnGo() {
fmt.Println("learn go");
learnGo();
}
搭建网站
Github 地址:https://github.com/robinv8/daily
为什么要做
技术栈
前端:Astro https://astro.build/ 后端:Go https://go.dev/ 数据库:PostgreSQL https://www.postgresql.org/
参考
tw93/weekly https://github.com/tw93/weekly Learn X in Y minutes https://learnxinyminutes.com/
总结
关注公众号:拾黑(shiheibook)了解更多
赞助链接:
关注数据与安全,洞悉企业级服务市场:https://www.ijiandao.com/
四季很好,只要有你,文娱排行榜:https://www.yaopaiming.com/
让资讯触达的更精准有趣:https://www.0xu.cn/