File: ascii.v

package info (click to toggle)
coq-stdpp 1.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,696 kB
  • sloc: makefile: 52; sh: 35; sed: 1
file content (11 lines) | stat: -rw-r--r-- 239 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
From stdpp Require Import strings.
From Coq Require Import Ascii.

Check "a". (* should be string *)

Check "a"%char. (* should be ascii *)

Open Scope char_scope.

Check "a". (* should be ascii *)
Check "a"%string. (* should be string *)