Jump to content
  • Sky
  • Blueberry
  • Slate
  • Blackcurrant
  • Watermelon
  • Strawberry
  • Orange
  • Banana
  • Apple
  • Emerald
  • Chocolate
  • Charcoal

welbre

Members
  • Content Count

    3
  • Joined

  • Last visited

About welbre

  • Rank
    Junior Member

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Lua tem apenas uma estrutura de dados Tabelas, então uma tabela pode conter muitas informações dentro, você pode acessar essas informações usando o [] após o nome da variável, você pode ler e escrever dentro da tabela, para criar sua própria tabela basta usar o = {} Ex: Como você pode ver, acima eu crio uma tabela e armazeno o endereço da tabela na variável myTable, para acessar os campos da tabela eu uso o [1] antes da variável que você está armazenando o endereço da tabela, o "1" é o campo que você quero acessar, então escrevo "Olá mundo" no primeiro campo da tabela. Se você nã
  2. You need to yield the thread, use os.sleep function in while loop block.
  3. You are creating a loop without any yielding, so, the OpenOS create a exemption to break the loop and close you program. To solve this, just use os.sleep(time), where time is the time that the program will wait in the while loop. Other way is use the event api, using local event = require"event", and using event.pull("key_down"), see the event api documentation to understand tha api, the event.pull function block the loop until the "key_down" event happen. The 2 ways do the same thing, create a yielding in program thread, so the OpenOS khows that the program isn't in a no end lo
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.