From 8389ff61e787b7616f7ed6f66eb7b0447d2db7ad Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 12:04:15 +0000 Subject: [PATCH] [Sync Iteration] julia/hello-world/1 --- solutions/julia/hello-world/1/hello-world.jl | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 solutions/julia/hello-world/1/hello-world.jl diff --git a/solutions/julia/hello-world/1/hello-world.jl b/solutions/julia/hello-world/1/hello-world.jl new file mode 100644 index 0000000..6ae75bf --- /dev/null +++ b/solutions/julia/hello-world/1/hello-world.jl @@ -0,0 +1,3 @@ +function hello() + return "Hello, World!" +end