diff options
| author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-11-12 20:34:24 +1300 |
|---|---|---|
| committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-11-12 20:34:24 +1300 |
| commit | c9e156fdc3449d1cbc9dac4176cc460f6462ef18 (patch) | |
| tree | eff51bebfc12e4417a6d70c49d696d703bd43745 /src/kompsos-pretty_print.ads | |
| parent | 9ae0a7e7c5d7669a81fe9eba13ff9c6224635efe (diff) | |
Prelude now derives its own World so dot notation works for those subprograms
Diffstat (limited to 'src/kompsos-pretty_print.ads')
| -rw-r--r-- | src/kompsos-pretty_print.ads | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/src/kompsos-pretty_print.ads b/src/kompsos-pretty_print.ads index 3ef7ac7..1359d1f 100644 --- a/src/kompsos-pretty_print.ads +++ b/src/kompsos-pretty_print.ads @@ -14,17 +14,35 @@ package Kompsos.Pretty_Print is function Image - (Item : in Variable) + (Item : in Term) return String; function Image - (Item : in Term) + (Item : in Mu_World'Class) + return String; + + +private + + + function Image + (Item : in Integer) + return String; + + + function Image + (Item : in ID_Number) + return String; + + + function Image + (Item : in Variable) return String; function Image - (Item : in World) + (Item : in State) return String; |
