diff options
| author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-11-10 18:57:08 +1300 |
|---|---|---|
| committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-11-10 18:57:08 +1300 |
| commit | 7719622ff4f72769f15a771dc5455dabeff295bc (patch) | |
| tree | c7800c67504178b6ef8591735ddaa72f3a2c9d41 /test/ab.adb | |
| parent | dbe103313c66e0a510ce689ba72b1d2d0857a457 (diff) | |
Infinite number of States in a World enabled with lazy evaluation
Diffstat (limited to 'test/ab.adb')
| -rw-r--r-- | test/ab.adb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ab.adb b/test/ab.adb index a371f2f..80b11c3 100644 --- a/test/ab.adb +++ b/test/ab.adb @@ -17,11 +17,11 @@ procedure AB is package TIO renames Ada.Text_IO; - package SKomp is new Kompsos (Integer); - use SKomp; + package InKomp is new Kompsos (Integer); + use InKomp; - package SPrin is new SKomp.Pretty_Print (Integer'Image); - use SPrin; + package InPrin is new InKomp.Pretty_Print (Integer'Image); + use InPrin; Verse : World := Empty_World; Ref : Variable; |
