From af861d7e409243bd95f6fcd3541a051bd15c5ee5 Mon Sep 17 00:00:00 2001 From: Jeremy Bulloch Date: Wed, 9 Aug 2023 13:44:08 -0400 Subject: [PATCH] Edit elixir script file to match convention taught --- reading/command_line.livemd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reading/command_line.livemd b/reading/command_line.livemd index 4c84467b..11af6afe 100644 --- a/reading/command_line.livemd +++ b/reading/command_line.livemd @@ -99,7 +99,7 @@ IO.puts("Hello, world!") Then execute the file from the command line. Any Elixir code inside of the file will execute. ``` -$ elixir script.ex +$ elixir script.exs Hello, world! ```