Jump to content

Module:Birth date and age: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

27 October 2025

  • curprev 09:0709:07, 27 October 2025 Wikigence talk contribs 834 bytes +834 Created page with "local p = {} function p.main(frame) local args = frame.args local year = tonumber(args[1]) local month = tonumber(args[2]) local day = tonumber(args[3]) if not (year and month and day) then return "Invalid date" end local birth_date = os.time{year=year, month=month, day=day} local now = os.time() local age = os.date("*t", now).year - year -- বয়স ঠিক করা local this_year_birthday = os.time{year=os..."