Some checks failed
Deploy to Server (Docker) / deploy (push) Failing after 9s
Reviewed-on: https://git.gocommunity.ru/walleri1/go_winter_work_2025/pulls/7 Co-authored-by: Vitaliy Turov <walleri1@yandex.ru> Co-committed-by: Vitaliy Turov <walleri1@yandex.ru>
18 lines
152 B
Bash
Executable File
18 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
outer() {
|
|
local count=0
|
|
inner() {
|
|
count=$(($count + 1))
|
|
echo $count
|
|
}
|
|
}
|
|
|
|
outer
|
|
outer
|
|
outer
|
|
outer
|
|
|
|
# res=outer
|
|
# count=$(res)
|