~repos /plum
git clone https://pyrossh.dev/repos/plum.git
A statically typed, imperative programming language inspired by rust, python
website/src/content/docs/statements/variables.md
---title: Variablesdescription: These are basic types---
Variables can be declared only at the local scope of a function as they are mutable. They are references/pointers to data.We use the Short Variable Declaration Operator `:=` to declare a variable
```rblow, mid, high := 0, 0, n.numItemsx := 10y := 20xy_list := List.of(1, 2, 3)xy_map := Map.of(1 => "one", 2 => "two")a := 1 + nb := 1 * na * b```