Skip to content

Instantly share code, notes, and snippets.

@kaworun
Created January 23, 2013 05:56
Show Gist options
  • Save kaworun/4602431 to your computer and use it in GitHub Desktop.
Save kaworun/4602431 to your computer and use it in GitHub Desktop.
age = 17
if age > 18 then
print("Z")
elseif age >= 17 then
print("D")
elseif age >= 15 then
print("C")
elseif age >= 12 then
print("B")
elseif age >= 0 then
print("A")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment