my first go

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了my first go相关的知识,希望对你有一定的参考价值。

package main

import "fmt"

func main() {
	var num1 int =5
	for num1>0 {
	fmt.Println("Hello, World!",num1 );
	num1--;
	}
}

 

以上是关于my first go的主要内容,如果未能解决你的问题,请参考以下文章

使用 Go 开发 Prometheus Exporter

Python--my first try!

My First Spring-Boot Project

[Go] 通过 17 个简短代码片段,切底弄懂 channel 基础

解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段

你知道的Go切片扩容机制可能是错的