]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/struct-arrays/struct-arrays.factor
classes.struct: moving to new/boa instead of <struct>/<struct-boa>
[factor.git] / extra / benchmark / struct-arrays / struct-arrays.factor
index 6e1338d50b354bbb3100a5f0ac80f0868a981e14..42b1abdbd0bf97b2458cea0c8be32845c28041cb 100644 (file)
@@ -37,7 +37,7 @@ SPECIALIZED-ARRAY: point
     [ x>> max ] [ y>> max ] [ z>> max ] change-xyz ; inline
 
 : <zero-point> ( -- point )
-    0 0 0 point <struct-boa> ; inline
+    0 0 0 point boa ; inline
 
 : max-points ( points -- point )
     <zero-point> [ max-point ] reduce ; inline