nitc :: CmdIni :: print_ini
# Print ini data fun print_ini(title: String, data: nullable String, no_color: nullable Bool) do if data == null then return if no_color == null or not no_color then print title.bold else print title end print "" print data end