Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,286 questions

52,312 answers

573 users

How to use check whether function argument is a number in Lua

1 Answer

0 votes
local function mul(a, b)
   assert(type(a) == "number", "a is not a number")
   assert(type(b) == "number", "b is not a number")
   return a * b
end

mul("we", 9)




--[[
run:
   
lua: lua:2: a is not a number
  
--]]

 



answered Sep 26, 2020 by avibootz

Related questions

2 answers 268 views
1 answer 285 views
285 views asked Sep 25, 2020 by avibootz
1 answer 240 views
240 views asked Sep 24, 2020 by avibootz
1 answer 155 views
155 views asked Dec 21, 2022 by avibootz
1 answer 230 views
1 answer 176 views
1 answer 260 views
...