package greeting

import "core:fmt"

greet :: proc(name: string) -> string {
    return fmt.aprintf("Hello, %s!", name)
}
