You can add string messages after deprecated procedures as warnings to tell someone to use a different procedure or different set of instructions to accomplish what you want.
old_function :: () #deprecated "please use the new_function :: () instead" {
}
new_function :: () {
}