crete ruby-puts (#21524)
This commit is contained in:
committed by
Kristofer Koishigawa
parent
0a6d02cb33
commit
041a4fb2d4
21
guide/english/ruby/ruby-puts/index.md
Normal file
21
guide/english/ruby/ruby-puts/index.md
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
title: Ruby Puts
|
||||
---
|
||||
|
||||
The puts call is similar to the print call, with a few exceptions. The puts call will add a new line to the end of each argument, whereas print will simply print the argument as stated.
|
||||
|
||||
For example, `puts[1, 2, 3, 4, 5]` will output:
|
||||
|
||||
```ruby
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
```
|
||||
|
||||
While `print[1, 2, 3, 4, 5]` will output:
|
||||
|
||||
```ruby
|
||||
[1, 2, 3, 4, 5]
|
||||
```
|
Reference in New Issue
Block a user