@import("lib/operator.felan"); print :: (value:anytype) -> void { if @type_of(value) == u8 { @putc(value); } }; main :: ()->void{ print('a'); };