coalton-lang / coalton

Coalton is an efficient, statically typed functional programming language that supercharges Common Lisp.
https://coalton-lang.github.io/
MIT License
1.15k stars 70 forks source link

Support 'shadow' clause in package. #1213

Closed jbouwman closed 2 months ago

jbouwman commented 2 months ago

Extend the syntax of package to support shadowing of symbols:

(package
  ...
  (shadow a b c ...))

This has the same effect as a Lisp defpackage :shadow clause.

Closes #1210