Quoting Variables

Quoting Variables

1 Bash[ | ]

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

2 PHP[ | ]

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

3 Ruby[ | ]

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

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}