Block level comment ignoring

uncomment  

Evaluates all of the code within the block. Use to reverse the effect of the comment without having to explicitly remove it.

Introduced in v2.0

Example

# Example 1

uncomment do
  play 50
  sleep 1
  play 62
end


# starting a block level comment:
# played
# sleep happens
# played