comparison Paper/src/Goto.agda @ 1:bf2887cd22c1

fix Paper
author ryokka
date Fri, 13 Apr 2018 19:47:50 +0900
parents
children
comparison
equal deleted inserted replaced
0:a5facba1adbc 1:bf2887cd22c1
1 goto : {l1 l2 : Level} {I : Set l1} {O : Set l2}
2 -> CodeSegment I O -> I -> O
3 goto (cs b) i = b i
4