From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- extensions/ParserFunctions/exprTests.txt | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 extensions/ParserFunctions/exprTests.txt (limited to 'extensions/ParserFunctions/exprTests.txt') diff --git a/extensions/ParserFunctions/exprTests.txt b/extensions/ParserFunctions/exprTests.txt new file mode 100644 index 00000000..d842d462 --- /dev/null +++ b/extensions/ParserFunctions/exprTests.txt @@ -0,0 +1,39 @@ +1 + 1 = 2 +-1 + 1 = 0 ++1 + 1 = 2 +4 * 4 = 16 +-4 * -4 = 4 * 4 +(1/3) * 3 = 1 +3 / 1.5 = 2 +3 mod 2 = 1 +1 or 0 +not (1 and 0) +not 0 +4.0 round 0; 4 +ceil 4; 4 +floor 4; 4 +4.5 round 0; 5 +4.2 round 0; 4 +-4.2 round 0; -4 +-4.5 round 0; -5 +-2.0 round 0; -2 +ceil -3; -3 +floor -6.0; -6 +ceil 4.2; 5 +ceil -4.5; -4 +floor -4.5; -5 +4 < 5 +-5 < 2 +-2 <= -2 +abs(-2); 2 +4 > 3 +4 > -3 +5 >= 2 +2 >= 2 +1 != 2 +not (1 != 1) +1e4 = 10000 +1e-2 = 0.01 +ln(exp(1));1 +trunc(4.5);4 +trunc(-4.5);-4 -- cgit v1.2.3-54-g00ecf