module Prelude.Nat.Core where

data Nat : Set where
  zero : Nat
  suc  : (n : Nat)  Nat

{-# BUILTIN NATURAL Nat #-}