“pcall lua” Respostas de código

Tente exceto Lua

require "try-catch"

try {
   function()
      error('oops')
   end,

   catch {
      function(error)
         print('caught error: ' .. error)
      end
   }
}
Naughty Nightingale

pcall lua

if pcall(foo) then
      -- no errors while running `foo'
      ...
    else
      -- `foo' raised an error: take appropriate actions
      ...
    end
Combative Caribou

Respostas semelhantes a “pcall lua”

Perguntas semelhantes a “pcall lua”

Procure respostas de código populares por idioma

Procurar outros idiomas de código