"Quoting Variables"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
4번째 줄: 4번째 줄:
==Bash==
==Bash==
[[category:Bash]]
[[category:Bash]]
<source lang='Bash'>
<syntaxhighlight lang='Bash'>
a=Alice
a=Alice
b=Bob
b=Bob
echo "$a and $b"
echo "$a and $b"
# Alice and Bob
# Alice and Bob
</source>
</syntaxhighlight>


==PHP==
==PHP==
[[category:PHP]]
[[category:PHP]]
<source lang='PHP'>
<syntaxhighlight lang='PHP'>
$a = 'Alice';
$a = 'Alice';
$b = 'Bob';
$b = 'Bob';
echo "$a and $b";
echo "$a and $b";
# Alice and Bob
# Alice and Bob
</source>
</syntaxhighlight>


==Ruby==
==Ruby==
[[category:Ruby]]
[[category:Ruby]]
<source lang='Ruby'>
<syntaxhighlight lang='Ruby'>
a = "Alice"
a = "Alice"
b = "Bob"
b = "Bob"
puts "#{a} and #{b}"
puts "#{a} and #{b}"
# Alice and Bob
# Alice and Bob
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:35 기준 최신판

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 }}