Facebook
From Beefy Bat, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 288
  1. function dupa()
  2.         local createDatabaseConnectionResult, createDatabaseConnectionErrorInfo = CreateDatabaseConnection()
  3.         if ( createDatabaseConnectionResult == false OR createDatabaseConnectionErrorInfo ~= nil ) then
  4.                 return false, createErrocreateDatabaseConnectionErrorInforInfo
  5.         end
  6.        
  7.         local doSomethingResult, doSomethingErrorMessage = doSomething()
  8.         if ( doSomethingResult == false OR doSomethingErrorMessage ~= nil ) then
  9.                 return false, doSomethingErrorMessage
  10.         end
  11.        
  12.         local closeDatabaseConnectionResult, closeDatabaseConnectionErrorInfo = CloseDatabaseConnection()
  13.         if ( closeDatabaseConnectionResult == false OR closeDatabaseConnectionErrorInfo ~= nil ) then
  14.                 return false, closeDatabaseConnectionErrorInfo
  15.         end
  16. end

Replies to Untitled rss

Title Name Language When
Re: Untitled Insensitive Hog text 5 Years ago.