~prelude/puts.cr
.cr
Crystal
(text/x-crystal)
# Global `puts` method
def puts(str : String)
  VGA.puts str
end

def p!(str : String)
  VGA.puts str
end