AndLua+ بالعربي
1.29K subscribers
110 photos
122 videos
332 files
19 links
أول قناة متخصصه بشروحات AndLua
شروحات ✔️
سورسات ✔️
سورسات انجكتر ✔️
برامج و ملفات ✔️
اذا عندك أي سؤال تفضل
مجموعة المشاكل و الحلول :
@Ar_andlua

للأستفسارات : @NAWAF

This is our English Channel :
@andluaplus
Download Telegram
function twice(x)
return 2*x --return value (x)=2x
end

print("The Number Is :")
io.read("*number")--Read variable number
a = 4
print(twice(a))

--Output will be like this :
--The Number Is :
--8
--Custom Prinit Location
function print(nr)
context=activity.getApplicationContext();
duration=Toast.LENGTH_SHORT;
toast=Toast.makeText(context, nr,duration);
toast.setGravity(Gravity.TOP,0,100)--| Gravity.TOP, 1, 40);--Set location
toast.show();
end

print("Hello There")