본문 바로가기
Language/Ruby

[Ruby] Ruby 시작하기 -2 /문자열/글자/text

by 나비와꽃기린 2016. 9. 8.
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

출처 : https://opentutorials.org/module/11/254

에 정리되어진 글을 보며 직접 공부하여, 다시 요약 & 정리한 글입니다.


문자열 테스트

puts '111111111111'

puts '문자열 테스트'

 

puts '          루비 공부 시작'

puts ''

puts '하하 ' * 4

 

puts 12 + 12

puts '12' + '12'

puts '12 + 12'

 

puts 3 * 5

puts '3' * 5

puts '3 * 5'

 

puts 'You\'re beautiful'

puts 'backslash at the end of a string:  \\'

 

//Outputs

 

111111111111

문자열 테스트

          루비 공부 시작

 

하하 하하 하하 하하

24

1212

12 + 12

15

33333

3 * 5

You're beautiful

backslash at the end of a string:  \