CrosRoad95 Posted August 24, 2017 Share Posted August 24, 2017 How can i make somethink like this? function add(c,d) c=c+d end a=5 add(a,5) print(a) -- print 10 Link to comment
Moderators IIYAMA Posted August 24, 2017 Moderators Share Posted August 24, 2017 function add(c,d) return c + d end a = 5 a = add(a,5) print(a) -- print 10 Even though it kinda useless. You better do it like this: a = 5 a = a + 5 print(a) -- print 10 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now