Skip to content

Instantly share code, notes, and snippets.

@YairRand
YairRand / luatranslate.js
Last active April 9, 2025 13:51
Script to translate Lua code between "English" and using keywords in other languages
var KW = {
en: {
'true': 'true',
'false': 'false',
'nil': 'nil',
'do': 'do',
'if': 'if',
'in': 'in',
'or': 'or',
'and': 'and',