Earl

Earl

Capture variations within functions

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

Most Liked

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

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

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.()

Last Post!

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.

Where Next?

Popular in Questions Top

Qqwy
Original source of discussion: This topic on the Pragmatic Programmers’ Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New
aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
jay1
Why is it that the mnesia database isn’t the most preferred database for use in Elixir/Phoenix?
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New
Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
jason.o
In the code below, if the create action is not set to accept “extra_key” as an input, it errors out with a message shown above. Is there ...
New

Other popular topics Top

hariharasudhan94
I would like to know what is the best IDE for elixir development?
New
Brian
What is the proper way to load a module from a file in to IEX? In the python world, doing something like this pretty standard: from ....
New
aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 49134 226
New
gausby
I asked this very same question on twitter and got some interesting feedback, but I thought it would be a good question to ask here as we...
1207 40082 209
New
albydarned
Hello all! I am typing this post from my new MacBook Pro with the M1 chip. I’m loving it so far, and will probably use it as my daily dr...
New

We're in Beta

About us Mission Statement