1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-21 10:37:58 +03:00
mal/crystal/types.cr

10 lines
154 B
Crystal

module Mal
class Symbol
property :val
def initialize(@val)
end
end
alias Type = Nil | Bool | Int32 | String | Symbol | Array(Type)
end