ysfylcn26
Hi all,
İ started to learn elixir so that i am new for functional programing. I wonder one thing. Elixir does immutable everything. But I try some examples.
def boxes(total) do
size_50 = div(total, 50)
total = rem(total, 50)
{“big: #{size_50} total: #{total}”}
end
I created named function and i get one input. But i can change total variable. This dont throw error because of immutable variables. Why?
Trending in Questions
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
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
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
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
So i have been using ash framework for a while and i love it. However currently the issue im having with ash framework is the error handl...
New
Other Trending Topics
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
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kokolegorille
Hello and welcome,
You cannot really change the variable, but You can rebind it.
It’s an Elixir compromise, that You won’t find in Erlang.
Under the hood it’s doing total_0, total_1, total_2 etc.
Please don’t forget to wrap your code with ``` to make it more readable, as in markdown
BTW It’s usually a good practice to avoid intermediate variables, and use pipe |> whenever You can.
BartOtten
dimitarvp
You change the contents of the variable. The variable name is just an alias for the new contents.
ysfylcn26
Thnak you. i will be more careful with ´´´ after now
kokolegorille
It is backtick ```, not ´´´
ysfylcn26
I really have to be more careful
rvirding
Yes, I think the easiest way to understand is that an Elixir variable is just a reference to the data and not the data itself. C programmers can see it as a pointer to the data not the data itself.
So when you do
x = {1, 2}and then
x = {:a, :b}you are first referring the variable
xto the tuple{1, 2}and then referringxto another tuple{:a, ·b}but you have NOT modified the tuples themselves. This is where the data immutability comes in as you actually CANNOT modify the tuples, or any other data for that matter. So the{:a, :b}is always the tuple{:a, :b}for as long as it exists.This is a problem that people coming from imperative languages often run into as it very much affects HOW you work with data.