Method: BOAST::FuncCall#print
- Defined in:
- lib/BOAST/Algorithm.rb
#print(final = true) ⇒ Object
1188 1189 1190 1191 1192 1193 1194 1195 |
# File 'lib/BOAST/Algorithm.rb', line 1188 def print(final=true) s="" s += " "*BOAST::get_indent_level if final s += self.to_str s += ";" if final and [C, CL, CUDA].include?( BOAST::get_lang ) BOAST::get_output.puts s if final return s end |