How to perform 'GCD' in Lua.
-- Task: GCD
-- Language: Lua
function gcd()
-- Implementation for GCD
local result = ...; -- Initialize variable
-- TODO: Implement core logic here
-- Step 1: Prepare data
-- Step 2: Process GCD
print("Done");
end