Earl

Earl

Hello and welcome to one of my first Elixir posts! Could someone please explain why the latter function, when ran, doesn’t return “Hello World!”? Does this have something to do with a “lambda function”? I have no idea what’s going on but I’m having fun. Thanks!

func = &IO.puts
func.("Hello World!")
 # :: Returns "Hello World!"

#This works
def talk(message), do: &IO.puts/1
msg = ModuleName.talk("Hello World!")
# :: Returns &IO.puts/1

Showing Posts 1 to 4

kartheek

kartheek

Welcome to Elixir @Earl

This is returning the capture IO.puts. The parameter message is unused in the above code.

You might have got a warning when the code was compiled.

warning: variable "message" is unused (if the variable is not meant to be used, prefix it with an underscore)
  iex:10: ModuleName.talk/1

We can remove the unused variable message from the code.
If you want to print Hello World, you will have to do something like this -

defmodule ModuleName do
  def talk(), do: &IO.puts/1
end
# then in iex  
iex> ModuleName.talk().("Hello World") 
Hello World
:ok

One other thing is IO.puts returns :ok - it writes “Hello World” to standard output.

Edit: added info about IO.puts return

eksperimental

eksperimental

def talk(message), do: &IO.puts/1
msg = ModuleName.talk("Hello World!")

What is going on there is that you are returning &IO.put/1 but this anonymous function knows nothing about message

you should do something like this

def talk(message), do: fn -> IO.puts(message) end
msg = ModuleName.talk("Hello World!")

#and then apply msg (anonymous function of arity-0
msg.()
al2o3cr

al2o3cr

One thing I’ve found really really important for folks learning a language: be very specific about the difference between “returning a value” and “printing a value”. Starting out in a REPL like iex can obscure this distinction, and it’s important to build a correct mental model.

IO.puts("Hello world") does two things:

  • it prints the string Hello world!
  • it returns the atom :ok
eksperimental

eksperimental

Worth to mention IO.inspect inspects the value and prints it, AND returns said value, but it should never use as a means to return the value IMO.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews