语法: 在一行的末尾添加两个或多个空格,然后按回车键,即可创建一个换行(<br>)。 Markdown语法 HTML 预览效果 This is the first line. And this is the second line. <p>This is the first line.<br>And this is the se...
go run . 例子: go run 用于编译并运行源码文件,由于包含编译步骤,所以 go build 参数都可用于 go run ,在 go run 中只接受go源码文件 而不接受 代码包。 go run命令会编译源码,并且直接执行源码的 main() 函数 ,不会在当前目录留下可执行文件 。 go run softool .go ...