Top Level Namespace
Instance Method Summary collapse
- #cout(x) ⇒ Object
- #display(x) ⇒ Object
- #echo(x) ⇒ Object
- #go(x) ⇒ Object
- #log(x) ⇒ Object
- #printf(x) ⇒ Object
- #printin(x) ⇒ Object
- #println(x) ⇒ Object
- #put_line(x) ⇒ Object
- #show(x) ⇒ Object
- #xRails(x) ⇒ Object
Instance Method Details
#cout(x) ⇒ Object
25 26 27 |
# File 'lib/royalprint.rb', line 25 def cout(x) puts(x) end |
#display(x) ⇒ Object
17 18 19 |
# File 'lib/royalprint.rb', line 17 def display(x) puts(x) end |
#echo(x) ⇒ Object
13 14 15 |
# File 'lib/royalprint.rb', line 13 def echo(x) puts(x) end |
#go(x) ⇒ Object
1 2 3 |
# File 'lib/royalprint.rb', line 1 def go(x) puts(x) end |
#log(x) ⇒ Object
5 6 7 |
# File 'lib/royalprint.rb', line 5 def log(x) puts(x) end |
#printf(x) ⇒ Object
29 30 31 |
# File 'lib/royalprint.rb', line 29 def printf(x) puts(x) end |
#printin(x) ⇒ Object
33 34 35 |
# File 'lib/royalprint.rb', line 33 def printin(x) puts(x) end |
#println(x) ⇒ Object
37 38 39 |
# File 'lib/royalprint.rb', line 37 def println(x) puts(x) end |
#put_line(x) ⇒ Object
21 22 23 |
# File 'lib/royalprint.rb', line 21 def put_line(x) puts(x) end |
#show(x) ⇒ Object
9 10 11 |
# File 'lib/royalprint.rb', line 9 def show(x) puts(x) end |
#xRails(x) ⇒ Object
41 42 43 |
# File 'lib/royalprint.rb', line 41 def xRails(x) puts(x) end |