view paper/src/AgdaNot.agda @ 51:6318c8f4bb8c

Writing Agda description
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Tue, 31 Jan 2017 11:57:12 +0900
parents
children
line wrap: on
line source

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