2 lines
55 B
Bash
2 lines
55 B
Bash
foo="Hello"
|
|
bar=$foo # This is a copy of the string
|
foo="Hello"
|
|
bar=$foo # This is a copy of the string
|