Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7668941
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:29:03+00:00 2026-05-31T15:29:03+00:00

When using the Lua 5.2 API, the code below prints nil function __debug(szName, …)

  • 0

When using the Lua 5.2 API, the code below prints “nil”

function __debug(szName, ...)
    print(type(arg));
end

__debug("s", 1, 2, 3, 4);

But this code does work when using Lua 5.1, and prints “table”

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T15:29:04+00:00Added an answer on May 31, 2026 at 3:29 pm

    If you are referring to vararg function, the arg table was deprecated already in Lua 5.1. In Lua 5.2, you can use table.pack to create arg if you need it:

    function debug(name, ...)
        local arg = table.pack(...)
        print(name)
        for i=1,arg.n do
            print(i, arg[i])
        end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

If I have some lua code like this: doSomething(function() print(Hello!) end) How can I
I am using [actually learning to use] the Lua C api. I'm new to
Say I declare a lua function using the : operator like so: function ClassName:myFunc(
How do I extract files using Lua? Update: I now have the following code
I'm using lua-feeds ( http://code.matthewwild.co.uk/lua-feeds/ ) require lua-feeds/feeds local feed = feeds.open(http://php.net/feed.atom); for _,
My situation is that I'm using the Lua (C) API to execute a script
I am using the lua C-API to read in configuration data that is stored
I'm using Luabind to bind a C++ API to Lua. I have some objects
I'm trying to run an executable using Lua's os.execute() function. If I do something
I am using Lua inside C# WinForms application for GUI automation testing. I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.