You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
380 B

  1. -- Number
  2. testvalue_num = 900.0
  3. -- Integer
  4. testvalue_int = -900
  5. -- Unsigned
  6. testvalue_uint = 900
  7. -- String
  8. testvalue_str = "900"
  9. function_return = GlobalAddString("test");
  10. loluademo_return = LoluaDemo.AddFive(1);
  11. loluademo_inst = LoluaDemo.New();
  12. loluademo_inst:SetX(10);
  13. loluademo_getx = loluademo_inst:GetX();
  14. loluademo_inst_return = loluademo_inst:AddTenInstance(2.5, 4, 6);