Method: BOAST::Expression#pr

Defined in:
lib/BOAST/Language/Expression.rb

#prObject



115
116
117
118
119
120
121
122
# File 'lib/BOAST/Language/Expression.rb', line 115

def pr
  s=""
  s << indent
  s << to_s
  s << ";" if [C, CL, CUDA].include?( lang )
  output.puts s
  return self
end