Last active 1750169261

hello_world.sh Raw
1#!/bin/sh
2
3function hi
4{ echo 'Hello World' }
5function main
6{ hi }
7main $@