added a configure option to disable isocline

This commit is contained in:
2025-09-17 22:51:43 +09:00
parent 0da9721c9f
commit 8c54c12ea7
8 changed files with 151 additions and 73 deletions

View File

@ -125,11 +125,23 @@ class[#b] B (a b) {
}
fun print() {
printf "%d %d\n" self.a self.b
printf "A: %d B: %d\n" self.a self.b
}
}
x := (B:new)
class[#b] C: B (c) {
fun[#ci] new() {
super:new
self.c := 77
}
fun print() {
super:print
printf "C: %d\n" self.c
}
}
x := (C:new)
x:print
```