Next: Many bugs have been fixed, Previous: Source Registry Configuration, Up: “What has changed between ASDF 1, ASDF 2, and ASDF 3?” [Contents][Index]
In ASDF 1, you had to use the awkward syntax
(asdf:oos 'asdf:load-op :foo)
to load a system,
and similarly for compile-op
, test-op
.
In ASDF 2 and later, you can use shortcuts for the usual operations:
(asdf:load-system :foo)
, and
similarly for compile-system
, test-system
.