changed the superclass marker from '::' to ':'
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-10-03 22:54:03 +09:00
parent 0dbaa264f7
commit 6896da6870
5 changed files with 56 additions and 14 deletions

View File

@ -26,7 +26,7 @@ class A [ a b c ] {
fun get-c() { return self.c; };
};
class B :: A [ d e f ] {
class B: A [ d e f ] {
fun(#ci) newInstance(x y z) {
super:newInstance (* x 2) (* y 2) (* z 2);