20 lines
266 B
Bash
20 lines
266 B
Bash
# code
|
|
# module
|
|
|
|
# show the cached code
|
|
#= rc
|
|
rwx_code() {
|
|
echo "${_rwx_code}"
|
|
}
|
|
|
|
# show the cached constants
|
|
#= rcc
|
|
rwx_code_constants() {
|
|
echo "${_rwx_code_constants}"
|
|
}
|
|
|
|
# show the cached functions
|
|
#= rcf
|
|
rwx_code_functions() {
|
|
echo "${_rwx_code_functions}"
|
|
}
|