Method: Fisk#comment

Defined in:
lib/fisk.rb

#comment(message) ⇒ Object

Insert a comment at the current position in the instructions.



638
639
640
641
# File 'lib/fisk.rb', line 638

def comment message
  @instructions << Comment.new(message)
  self
end