Quoting Variables

Quoting Variables

1 Bash[ | ]

Bash
Copy
a=Alice
b=Bob
echo "$a and $b"
# Alice and Bob

2 PHP[ | ]

PHP
Copy
$a = 'Alice';
$b = 'Bob';
echo "$a and $b";
# Alice and Bob

3 Ruby[ | ]

Ruby
Copy
a = "Alice"
b = "Bob"
puts "#{a} and #{b}"
# Alice and Bob

4 같이 보기[ | ]

5 참고[ | ]