Automatic public news update
diff --git a/OLD.megaschmarrn b/OLD.megaschmarrn
index 454525b..acfa53a 100644
--- a/OLD.megaschmarrn
+++ b/OLD.megaschmarrn
Binary files differ
diff --git a/OLD.schmarrn b/OLD.schmarrn
index 5032b04..fd5a354 100644
--- a/OLD.schmarrn
+++ b/OLD.schmarrn
@@ -412744,3 +412744,90 @@
+Re: Re: Fun with floats... (Zook, 23. Jan 2022, 20:19:28):
+~#! rn=Rumata rt=1642414179 rg=schmarrn
+~#! tid=1642411819
+Zook nickt aeusserst weise.
+
+-----------------------------------------------------------------------------
+
+
+
+Re: Re: Fun with floats... (Amaryllis, 23. Jan 2022, 20:39:09):
+~#! rn=Rumata rt=1642414179 rg=schmarrn
+~#! tid=1642411819
+Ein netter Talk zu dem Thema:
+https://www.destroyallsoftware.com/talks/wat
+
+Ama*
+oissast weise niggend.
+
+-----------------------------------------------------------------------------
+
+
+
+Re^3: Fun with floats... (Zook, 23. Jan 2022, 20:39:53):
+~#! rn=Amaryllis rt=1642966749 rg=schmarrn
+~#! tid=1642411819
+Ohja, wer den noch nicht kennt, unbedingt anschauen. Schon
+legendaer.
+
+Zook
+
+-----------------------------------------------------------------------------
+
+
+
+Re^4: Fun with floats... (Croft, 23. Jan 2022, 21:20:00):
+~#! rn=Zook rt=1642966793 rg=schmarrn
+~#! tid=1642411819
+Und was wurde jetzt in magier.lpc geschrieben?
+
+Croft
+
+-----------------------------------------------------------------------------
+
+
+
+Re^5: Fun with floats... (Zesstra, 23. Jan 2022, 21:48:32):
+~#! rn=Croft rt=1642969200 rg=schmarrn
+~#! tid=1642411819
+Sowas hier:
+
+Teil 1:
+
+ float f;
+ if (f)
+ write("True.\n");
+
+Prints "True.\n".
+
+Teil 2:
+
+ float f;
+ if (f==0.0)
+ write("True.\n");
+
+This prints "True.\n" as well.
+
+varargs void test(float f)
+{
+ // called without argument
+ // oder explizites f = 0;
+ f++;
+ f *= time();
+ f -= 1;
+ printf("f is %O (%s)\n", f, ([7:"float",2:"int"])[get_type_info(f,0)] );
+}
+
+# test(42) -> Error: Bad arg 1 to test(): got 'int', expected 'float'.
+# test(42.0) -> f is 7.06278e+10.0 (float)
+# test() -> f is 1642506155 (int)
+# test(0) -> f is 1642506155 (int)
+
+Zesstra
+
+-----------------------------------------------------------------------------
+
+
+