colon-kw and kw-colon
1 colon-kw
2 kw-colon
8.12

colon-kw and kw-colon🔗ℹ

source code: https://github.com/AlexKnauth/colon-kw

1 colon-kw🔗ℹ

 #lang colon-kw package: colon-kw
A lang-extension that adds :kw syntax as an alternative to #:kw to any racket language that looks at the current readtable.

For example,
#lang colon-kw racket
Is a language like racket, except that :kw reads equivalent to #:kw.

2 kw-colon🔗ℹ

 #lang kw-colon package: colon-kw
A lang-extension that adds kw: syntax as an alternative to #:kw.

For example,
#lang kw-colon racket
Is a language like racket, except that kw: can be used in place of #:kw.

These two lang-extensions are compose-able as well, so you can use
#lang colon-kw kw-colon racket
to let :kw and kw: both work in the same file.