Slide 6
Slide 6 text
Hello World
■ Mojo
■ mainで名付けているので、別途呼び出さなくて良い
■ mojo buildで単体で実行可能なファイルをビルド
■ Pythonファイルの場合、怒られる
● mojo hello.py
■ mojo: error: no such command 'hello.py'
● mojo build hello.py
■ mojo: error: cannot open 'hello.py', since it does not appear to be a Mojo file
(it does not end in '.mojo' or '.🔥')
● mojo hello_py.mojoの場合は文法エラー
6