git clone https://github.com/itsnitigya/rust-terminal-frontend
cd rust-terminal-frontend/src
yarn
yarn start
ls
date
touch testing.txt
fn main() {
println!(\"hello world \");
}
fn main() {
let x = 10;
println!(\"The value of x is: {}\", x);
}
fn main() {
let mut x = 10;
print!(\"The value of x is: {}\", x);
x = 20;
print!(\"The value of x is: {}\", x);
}