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
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
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
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
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.
Popular in Questions
Other popular topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #elixirconf-us
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex









