This commit is contained in:
kayos@tcp.direct 2022-01-01 23:44:05 -08:00
rodič 124fd53ebc
revize 37d32621e8
2 změnil soubory, kde provedl 14 přidání a 1 odebrání

13
LICENSE Normal file
Zobrazit soubor

@ -0,0 +1,13 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2021 yung innanet <kayos@tcp.direct>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.

Zobrazit soubor

@ -11,7 +11,7 @@ func Test_RNG(t *testing.T) {
one := RNG(55555)
t.Logf("Random0: %d Random1: %d", zero, one)
if zero == one {
t.Fatal("RNG hit a duplicate")
t.Errorf("RNG hit a duplicate! %s == %s", zero, one)
}
zero = 0
one = 0