fixed the wrong core function name in mod/core.c
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-04 13:40:07 +09:00
parent a86088045d
commit 433744c33a
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
class Apex {
fun basicNew(size) {
fun :: basicNew(size) {
return (core.basic_new self size)
}
}
@ -92,3 +92,7 @@ try {
printf "EXCEPTION %O\n" e
}
k := (Array:new 10)
k:atPut 3 "hello"
printf "%O\n" k