playper/src/base.cr
2023-01-14 19:50:04 -06:00

8 lines
174 B
Crystal

# This is the base functionality code interchangeable between cli and server program
module Base
VERSION = "0.1.0"
# TODO: Put your code here
print("Hello world")
end