Ruby Language
코멘트
수색…
단일 및 복수 줄 주석
주석은 런타임에 무시되는 프로그래머가 읽을 수있는 주석입니다. 그들의 목적은 소스 코드를 이해하기 쉽게 만드는 것입니다.
한 줄 주석
#
문자는 한 줄 주석을 추가하는 데 사용됩니다.
#!/usr/bin/ruby -w
# This is a single line comment.
puts "Hello World!"
위의 프로그램을 실행하면 Hello World!
가 출력됩니다 Hello World!
여러 줄 주석
다음과 같이 =begin
및 =end
구문 (주석 블록 마커라고도 함)을 사용하여 여러 줄 주석을 추가 할 수 있습니다.
#!/usr/bin/ruby -w
=begin
This is a multiline comment.
Write as many line as you want.
=end
puts "Hello World!"
위의 프로그램을 실행하면 Hello World!
가 출력됩니다 Hello World!
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow