mirror of
https://github.com/sheumann/hush.git
synced 2025-02-09 02:31:20 +00:00
8 lines
70 B
Plaintext
Executable File
8 lines
70 B
Plaintext
Executable File
func() {
|
|
eval "echo \"\${val_${1}}\""
|
|
}
|
|
|
|
val_x=24
|
|
(func x)
|
|
echo Done
|