编译Go编程语言有多难?

发布于 2024-08-16 19:55:49 字数 109 浏览 2 评论 0原文

基本上如标题所述:编译平均 go* 文件的过程是什么?将其放在编译器上并执行结果?


*注意:OP 编辑​​了问题,在回滚之前将“go”替换为“C”。所以有些答案是没有意义的。

Basically what the title says: what's the process for compiling your average go* file? drop it on a compiler and execute the result?


*note: The OP edited the question replacing "go" with "C", before it was rolled back. So some of the answers won't make sense.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美人如玉 2024-08-23 19:55:49

您是否看过 http://golang.org/doc/go_tutorial.html< 上的 Go 教程? /a>

    Here's how to compile and run our program. With 6g, say,

        $ 6g helloworld.go  # compile; object goes into helloworld.6
        $ 6l helloworld.6   # link; output goes into 6.out
        $ 6.out
        Hello, world; or Καλημέρα κόσμε; or こんにちは 世界
        $

    With gccgo it looks a little more traditional.

        $ gccgo helloworld.go
        $ a.out
        Hello, world; or Καλημέρα κόσμε; or こんにちは 世界

Did you take a look at the Go tutorial at http://golang.org/doc/go_tutorial.html

    Here's how to compile and run our program. With 6g, say,

        $ 6g helloworld.go  # compile; object goes into helloworld.6
        $ 6l helloworld.6   # link; output goes into 6.out
        $ 6.out
        Hello, world; or Καλημέρα κόσμε; or こんにちは 世界
        $

    With gccgo it looks a little more traditional.

        $ gccgo helloworld.go
        $ a.out
        Hello, world; or Καλημέρα κόσμε; or こんにちは 世界
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文