shortened ::* to :*
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-02-03 18:50:10 +09:00
parent 9aa1bde1a1
commit c2928615a4
12 changed files with 39 additions and 23 deletions

View File

@ -1,5 +1,5 @@
defclass A | a | {
defun ::* init1() {
defun :* init1() {
| b |
set b (+ 1 2);
set a b;
@ -15,7 +15,7 @@ defclass A | a | {
printf ">>> %d\n" j;
}
defun ::* init2() {
defun :* init2() {
| b |
set b (+ 10 20);
set a b;