Immediately after switching the page, it will work with CSR.
Please reload your browser to see how it works.
https://github.com/emacs-mirror/emacs/blob/7cb77385d38b96377...
it seems to be intended for character set conversion especially JIS.
Here is my first CCL program.
(define-ccl-program hw
'(1
(loop
(write r0 [72 101 108 111])
(r1 += 1)
(if (r1 == 3) (repeat) ())
(r0 += 1)
(if (r0 < 4) (repeat) (break))
)
)
)
(ccl-execute-on-string
'hw
[0 0 0 0 0 0 0 0 1] "")
Tested in *scratch* buffer, worked. Probably not very idiomatic...