pluralsight-go-fundamentals

时间:2024-06-11 18:46:02
【文件属性】:

文件名称:pluralsight-go-fundamentals

文件大小:12KB

文件格式:ZIP

更新时间:2024-06-11 18:46:02

Go

概述 简单(仅25个关键字) 已编译 静态链接 静态类型 支持类型推断 参考 这很棒: : 惯用Go: : 一些约定 软件包应为单个单词的小写名称 函数和变量应该为MixedCase或MixedCase 安装它 设置工作区 创建~/gocode/{src,pkg,bin} 将$GOPATH env var设置$GOPATH工作区目录 你好,世界 package main // means this is an executable not library import "fmt" // entry point of executable (as opposed to shared lib) // takes no arguments has no return values func main() { fmt.Println("hi!") } 编译并运行 go run


【文件预览】:
pluralsight-go-fundamentals-master
----if.go(602B)
----calcs.go(260B)
----README.md(10KB)
----maps.go(323B)
----env-vars.go(113B)
----self-destruct.go(264B)
----variables.go(432B)
----slices2.go(265B)
----func.go(306B)
----open.go(169B)
----variables2.go(365B)
----slices.go(165B)
----hello-world.go(101B)
----switch.go(193B)
----concur.go(527B)
----file.txt(4B)
----range.go(407B)
----structs.go(565B)
----switch2.go(286B)
----func1.go(283B)

网友评论