mirror of
https://github.com/sheumann/hush.git
synced 2025-01-06 21:30:08 +00:00
8 lines
73 B
Plaintext
Executable File
8 lines
73 B
Plaintext
Executable File
func() {
|
|
eval "echo \"\${val_${1}}\""
|
|
}
|
|
|
|
val_x=24
|
|
(func x)
|
|
echo Done
|