Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

mode name
-rw-r--r-- README.md
-rw-r--r-- variables1.rs
-rw-r--r-- variables2.rs
-rw-r--r-- variables3.rs
-rw-r--r-- variables4.rs
-rw-r--r-- variables5.rs
-rw-r--r-- variables6.rs
README

Variables

In Rust, variables are immutable by default. When a variable is immutable, once a value is bound to a name, you can’t change that value. You can make them mutable by adding mut in front of the variable name.

Further information