annotate paper/src/Goto.agda @ 104:0ab2de92120b teacher-submit

Added tag 1F-submit for changeset 0a4646310261
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 13 Feb 2017 10:33:15 +0900
parents ecd3a1e40921
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
60
ecd3a1e40921 Add normal level goto
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 goto : {l1 l2 : Level} {I : Set l1} {O : Set l2}
ecd3a1e40921 Add normal level goto
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 -> CodeSegment I O -> I -> O
ecd3a1e40921 Add normal level goto
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 goto (cs b) i = b i
ecd3a1e40921 Add normal level goto
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4