mirror of
https://github.com/zplug/zplug
synced 2025-08-31 02:00:38 +02:00
10 lines
137 B
Bash
10 lines
137 B
Bash
#!/bin/zsh
|
|
|
|
__zplug::print::print::put() {
|
|
command printf -- "$@"
|
|
}
|
|
|
|
__zplug::print::print::die() {
|
|
command printf -- "$@" >&2
|
|
}
|