We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Context: https://go-tour-jp.appspot.com/basics/1
Go 1.20で自動的にランダムにシードを与えるようになったため以下の記述は不要となりました。
Note: ここで実行するプログラムは常に同じ環境で実行されます ので、[擬似乱数](http://ja.wikipedia.org/wiki/%E6%93%AC%E4%BC%BC%E4%B9%B1%E6%95%B0)を返す [rand.Intn](https://golang.org/pkg/math/rand/#Rand.Intn) はいつも同じ数を返します。 (数を強制的に変える場合は、乱数生成でシードを与える必要があります。[rand.Seed](https://golang.org/pkg/math/rand/#Seed)を見てみてください。 playground 上での時間は一定なので他のものをシードとして使う必要があります。)
The text was updated successfully, but these errors were encountered:
PR出しました! #78
Sorry, something went wrong.
No branches or pull requests
Context: https://go-tour-jp.appspot.com/basics/1
Go 1.20で自動的にランダムにシードを与えるようになったため以下の記述は不要となりました。
The text was updated successfully, but these errors were encountered: