summaryrefslogtreecommitdiff
path: root/src/flint.cr
blob: 44341183521b16c92be9c3e8cd20c513cfb743a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# TODO: Write documentation for `Flint`
module Flint
  VERSION = "0.1.0"

  # TODO: Put your code here
  def self.main
    puts "Hello world!"
  end
end

Flint.main