|
-- main script that runs application logic and flow
|
|
|
|
|
|
-- initial function called from C main
|
|
function main ()
|
|
print("print from main.\n")
|
|
print("dict_call ", dict_call( 1, 2, 3, 4), "\n")
|
|
end
|
|
|
|
-- call functions desired to run when script is called
|
|
main ()
|
|
|