11 lines
65 B
Bash
11 lines
65 B
Bash
#!/bin/sh
|
|
|
|
toto() {
|
|
echo toto
|
|
}
|
|
|
|
tata () {
|
|
echo tata
|
|
}
|
|
|
|
toto
|