package utils import "core:os" read_file :: proc(s: string) -> string { contents, _ := os.read_entire_file(s) return string(contents) }