Main public logs
Appearance
Combined display of all available logs of Logic World Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 01:13, 7 September 2025 Felipe talk contribs created page Module:LogicUtils (Created page with "local p = {} p.truth_table = function(frame, args) local args = args or frame:getParent().args local html = "<table class=\"wikitable\"><tr>" for token in string.gmatch(args[1], "[^%s]+") do html = html.."<th>"..token.."</th>" end html = html.."</tr>" for i=2,#args do html = html.."<tr>" for token in string.gmatch(args[i], "[^%s]+") do if token == "0" then html = html.."<td style=\"color: red\">0</td>" elseif token == "1" then html = html.."...")