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: \ |
'Language > Ruby' 카테고리의 다른 글
[Ruby] Ruby 시작하기 -5 /puts/gets/chomp (0) | 2016.09.08 |
---|---|
[Ruby] Ruby 시작하기 -4 /to_i/to_f/to_s 비교 (0) | 2016.09.08 |
[Ruby] Ruby 시작하기 -3 /변수/변수할당/variables (0) | 2016.09.08 |
[Ruby] Ruby 시작하기 - 1 /숫자/.to_s/rand/math/abs (0) | 2016.09.08 |
[Ruby] Code Test 사이트 (0) | 2016.09.08 |