結果
問題 |
No.9000 Hello World! (テスト用)
|
ユーザー |
![]() |
提出日時 | 2016-08-12 18:58:50 |
言語 | Elixir (1.18.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 270 bytes |
コンパイル時間 | 1,759 ms |
コンパイル使用メモリ | 59,508 KB |
実行使用メモリ | 71,152 KB |
最終ジャッジ日時 | 2024-12-31 01:55:18 |
合計ジャッジ時間 | 4,695 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 4 |
コンパイルメッセージ
Hello World!
ソースコード
# http://elixir-lang.org/ からコピペ parent = self() # Spawns an Elixir process (not an operating system one!) spawn_link(fn -> send parent, {:msg, "Hello World!"} end) # Block until the message is received receive do {:msg, contents} -> IO.puts contents end