Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bash-nested-functions « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c9237ead42598a639962d590373620e2f304507 (plain)
1
2
3
4
5
6
outer() {
    RIGHT() {
        :
        echo 'ChangeMe'
    }
}