Customizações Avançadas
Bibliotecas
Key
utilizado para guardar valores em memória para utilização em runtime atalhos /#get /#set /#remove métodos get \ @param name the name of the key storaged \ @return the value associated with the key or an empty string if the key does not exists get key(name) \ example usage local my value = get key("my key") set \ @param key the key name to be storaged \ @param value the value to be storaged set key(key, value) \ example usage set key("my key", 123) remove \ @param name the name of the key to be removed \ @return the value the value that was removed or an empty string if the key does not exists remove key(name) \ example usage local removed value = remove key("my key")