A flashcard app for drilling on spellings of words based on audio recordings
on.key_release = function(key, scancode)
	if Mode == 'teach' then
		teach_key_release(key, scancode)
	else
		learn_key_release(key, scancode)
	end
end