short cbitconstruct syntax added by rivo on Sat Apr 27 21:26:16 2013

; current long syntax
(bitstring->blob
	(bitconstruct ([55] ["abc"])))

; 1) custom names for short syntax bistring-list bistring-blob
(bitconstruct-blob [55] ["abc"])

; 2) short syntax with optional type
; blob (list 1) syntax-rules keywords
(bitconstruct blob [55] ["abc"])
(bitconstruct (list 1) (55) ("acb"))