implement meta token replacement

This commit is contained in:
2025-08-24 20:54:20 +02:00
parent ddba3423df
commit 015de5dc0a
7 changed files with 128 additions and 22 deletions

View File

@@ -1,3 +1,4 @@
#with mathlib.mlc
variable:=-3; c := (a+b- 3) * 23 + variable; d := c - a;Natural : Number (n) := {n >= 0};faculty : Natural (n) -> Natural := if n = 0 then 1 else faculty (n-1) * n end;
String Natural (n) := {Character * n};hello_word -> String := "Hello World!";
first_letter -> Character := 'a';