$ abcl --noinit
Armed Bear Common Lisp 1.8.0
Java 18 Homebrew
OpenJDK 64-Bit Server VM
Low-level initialization completed in 0.092 seconds.
Startup completed in 0.471 seconds.
Type ":help" for a list of available commands.
CL-USER(1): (defparameter *hash-table* (make-hash-table :size 7))
*HASH-TABLE*
CL-USER(2): (hash-table-size *hash-table*)
11
CL-USER(3):
CL-USER(3): (defparameter *larger-hash-table* (make-hash-table :size 42))
*LARGER-HASH-TABLE*
CL-USER(4): (hash-table-size *larger-hash-table*)
42