view paper/src/AgdaNot.agda @ 118:05068a4d0b52

Fix specification
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 13 Feb 2017 17:39:10 +0900
parents 6318c8f4bb8c
children
line wrap: on
line source

not : Bool -> Bool
not  true = false
not false = true