~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

# STDIN  = IO::FileDescriptor.new 0
# STDOUT = IO::FileDescriptor.new 1
# STDERR = IO::FileDescriptor.new 2
# STDERR.buffer_size = 0

# STDOUT.puts "hello from crystal\n"