“pcall lua” Code-Antworten

Versuchen Sie außer 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

Ähnliche Antworten wie “pcall lua”

Fragen ähnlich wie “pcall lua”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen