Hello world
Here is a program that prints out the text "Hello, Joe!".
ここに、"Hello, Joe!" というテキストを出力するプログラムがあります。
It does this by using the println
function which has been
imported from the
gleam/io
module, which is part of the Gleam standard library.
これは、Gleam 標準ライブラリの一部である gleam/io
モジュールからインポートされた println
関数を使用することによって行われます。
In a normal Gleam program this program would be run using the command
gleam run
on the command line, but here in this tour the program
is automatically compiled and run as the code is edited.
通常の Gleam プログラムでは、このプログラムはコマンドラインの gleam run
コマンドを使って実行されますが、このツアーではコードを編集すると自動的にコンパイルされて実行されます。
Try changing the text being printed to Hello, Mike!
and see what
happens.
出力されるテキストを Hello, Mike!
に変えてみて、どうなるか見てみましょう。