The document discusses the SATYSFI Conf 2021 conference which will take place on June 26, 2021. It provides details on recent updates to the SATYSFI typesetting system including the addition of linear-transform-graphics, improvements to page breaking for multicolumn content, and adding debugging information for overfull/underfull boxes. Version 0.0.6, 0.0.7, and planned future updates are summarized. The document also discusses using domain specific languages for describing typesetting definitions and structures and provides examples using amidakuji diagrams.
37. SECDマシンの詳細: 再帰する(2)
●
dum (dummy)
– 環境のトップにダミー値を設定する
– これはrapで書き換えるためのプレースホルダ
– ldfの前(レキシカル環境を作る前)にdumする必要がある
;; https://github.com/t-sin/secdm/blob/master/vm.lisp
(defop dum (vm)
"Load a dummy value to current enviroment.
This dummy value :omega will be replaced by `rap` operator."
(push :omega (vm-e vm)))