Method: Pik::ScriptFile#echo
- Defined in:
- lib/pik/scripts/script_file.rb
#echo(string = '.') ⇒ Object
21 22 23 24 25 |
# File 'lib/pik/scripts/script_file.rb', line 21 def echo(string='.') string = ' ' + string unless string == '.' @file_data << "ECHO#{string}" self end |