diff --git a/snippets/aeternvm.cent b/snippets/aeternvm.cent index 472dce8..ce365ee 100644 --- a/snippets/aeternvm.cent +++ b/snippets/aeternvm.cent @@ -1,8 +1,8 @@ DESIGNA x VT NVLLVS AETERNVM FACE { - DESIGNA x VT x+I - SI x EST X TVNC { - ERVMPE - } + DESIGNA x VT x+I + SI x EST X TVNC { + ERVMPE + } } DICE(x) diff --git a/snippets/aeternvm.png b/snippets/aeternvm.png index 20f820f..a547a71 100644 Binary files a/snippets/aeternvm.png and b/snippets/aeternvm.png differ diff --git a/snippets/alvid.cent b/snippets/alvid.cent index 76cae13..071af06 100644 --- a/snippets/alvid.cent +++ b/snippets/alvid.cent @@ -1,6 +1,6 @@ DESIGNA x VT VERITAS SI x TVNC { - DICE(I) + DICE(I) } ALVID { - DICE(NVLLVS) + DICE(NVLLVS) } diff --git a/snippets/alvid.png b/snippets/alvid.png index b2883e2..7b7a502 100644 Binary files a/snippets/alvid.png and b/snippets/alvid.png differ diff --git a/snippets/alvid_si.cent b/snippets/alvid_si.cent index 500f856..8932fcf 100644 --- a/snippets/alvid_si.cent +++ b/snippets/alvid_si.cent @@ -1,8 +1,8 @@ DESIGNA x VT II SI x EST I TVNC { - DICE(I) + DICE(I) } ALVID SI x EST II TVNC { - DICE(II) + DICE(II) } ALVID { - DICE(III) + DICE(III) } diff --git a/snippets/alvid_si.png b/snippets/alvid_si.png index 07895cb..9baeff6 100644 Binary files a/snippets/alvid_si.png and b/snippets/alvid_si.png differ diff --git a/snippets/boolean_ops.cent b/snippets/boolean_ops.cent index e275511..f288598 100644 --- a/snippets/boolean_ops.cent +++ b/snippets/boolean_ops.cent @@ -1,9 +1,9 @@ DESIGNA x VT VERITAS DESIGNA y VT FALSITAS SI x ET y TVNC { - DICE(I) + DICE(I) } ALVID SI x AVT y TVNC { - DICE(II) + DICE(II) } ALVID { - DICE(III) + DICE(III) } diff --git a/snippets/boolean_ops.png b/snippets/boolean_ops.png index 7702cf5..00baf80 100644 Binary files a/snippets/boolean_ops.png and b/snippets/boolean_ops.png differ diff --git a/snippets/dict_per.cent b/snippets/dict_per.cent index 0cf715a..0b46d49 100644 --- a/snippets/dict_per.cent +++ b/snippets/dict_per.cent @@ -1,3 +1,3 @@ PER k IN d FACE { - DICE(k) + DICE(k) } diff --git a/snippets/dict_per.png b/snippets/dict_per.png index b54dbbb..8325ae5 100644 Binary files a/snippets/dict_per.png and b/snippets/dict_per.png differ diff --git a/snippets/donicvm.cent b/snippets/donicvm.cent index 7d27462..2cf1d79 100644 --- a/snippets/donicvm.cent +++ b/snippets/donicvm.cent @@ -1,5 +1,5 @@ DESIGNA x VT NVLLVS DONICVM y VT NVLLVS VSQVE X FACE { - DESIGNA x VT x + y + DESIGNA x VT x + y } DICE(x) diff --git a/snippets/donicvm.png b/snippets/donicvm.png index e85cf58..efb71d2 100644 Binary files a/snippets/donicvm.png and b/snippets/donicvm.png differ diff --git a/snippets/dvm.cent b/snippets/dvm.cent index 1a0a7c6..d12592e 100644 --- a/snippets/dvm.cent +++ b/snippets/dvm.cent @@ -1,5 +1,5 @@ DESIGNA x VT NVLLVS DVM x PLVS X FACE { - DESIGNA x VT x+I + DESIGNA x VT x+I } DICE(x) diff --git a/snippets/dvm.png b/snippets/dvm.png index 28ec9e1..0264bad 100644 Binary files a/snippets/dvm.png and b/snippets/dvm.png differ diff --git a/snippets/fibonacci.cent b/snippets/fibonacci.cent index b8dd3a8..badf9cf 100644 --- a/snippets/fibonacci.cent +++ b/snippets/fibonacci.cent @@ -1,9 +1,9 @@ DEFINI fib(x) VT { - SI x EST NVLLVS TVNC { - REDI(NVLLVS) - } ALVID SI x EST I TVNC { - REDI(I) - } ALVID { - REDI(INVOCA fib(x-II) + INVOCA fib(x-I)) - } + SI x EST NVLLVS TVNC { + REDI(NVLLVS) + } ALVID SI x EST I TVNC { + REDI(I) + } ALVID { + REDI(INVOCA fib(x-II) + INVOCA fib(x-I)) + } } diff --git a/snippets/fibonacci.png b/snippets/fibonacci.png index fedf449..eaa3e82 100644 Binary files a/snippets/fibonacci.png and b/snippets/fibonacci.png differ diff --git a/snippets/function.cent b/snippets/function.cent index cca65c1..9df8cff 100644 --- a/snippets/function.cent +++ b/snippets/function.cent @@ -1,5 +1,5 @@ DEFINI sqvare(x) VT { - REDI(x*x) + REDI(x*x) } DICE(INVOCA sqvare(XI)) diff --git a/snippets/function.png b/snippets/function.png index c63b0a1..0e3b02d 100644 Binary files a/snippets/function.png and b/snippets/function.png differ diff --git a/snippets/fvnctio.cent b/snippets/fvnctio.cent index 917099e..c60aa5c 100644 --- a/snippets/fvnctio.cent +++ b/snippets/fvnctio.cent @@ -1,9 +1,9 @@ DEFINI apply (f, x) VT { - REDI (INVOCA f (x)) + REDI (INVOCA f (x)) } DESIGNA dbl VT FVNCTIO (n) VT { - REDI (n * II) + REDI (n * II) } DICE(INVOCA apply (dbl, VII)) diff --git a/snippets/fvnctio.png b/snippets/fvnctio.png index f3f2774..50fdc87 100644 Binary files a/snippets/fvnctio.png and b/snippets/fvnctio.png differ diff --git a/snippets/per.cent b/snippets/per.cent index 7d30816..8818de7 100644 --- a/snippets/per.cent +++ b/snippets/per.cent @@ -1,4 +1,4 @@ DESIGNA x VT [I, II, III, IV, V] PER y IN x FACE { - DICE(y) + DICE(y) } diff --git a/snippets/per.png b/snippets/per.png index 395347e..edc3b79 100644 Binary files a/snippets/per.png and b/snippets/per.png differ diff --git a/snippets/si_tvnc.cent b/snippets/si_tvnc.cent index 10f34c2..4233891 100644 --- a/snippets/si_tvnc.cent +++ b/snippets/si_tvnc.cent @@ -1,7 +1,7 @@ DESIGNA x VT VERITAS SI x TVNC { - DICE(I) - REDI(NVLLVS) + DICE(I) + REDI(NVLLVS) } DICE(NVLLVS) diff --git a/snippets/si_tvnc.png b/snippets/si_tvnc.png index fc09b19..ae16bd4 100644 Binary files a/snippets/si_tvnc.png and b/snippets/si_tvnc.png differ