1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
32%positive
: positive
eq_refl : 42%positive = 42%positive
: 42%positive = 42%positive
fun f : nat -> positive => (f 0%nat + 1)%positive
: (nat -> positive) -> positive
fun x : positive => (x~0)%positive
: positive -> positive
fun x : positive => (x + 1)%positive
: positive -> positive
fun x : positive => x
: positive -> positive
fun x : positive => (x~1)%positive
: positive -> positive
fun x : positive => (x~0 + 1)%positive
: positive -> positive
(Pos.of_nat 0 + 1)%positive
: positive
(1 + Pos.of_nat (0 + 0))%positive
: positive
Pos.of_nat 1 = 1%positive
: Prop
File "./output/PosSyntax.v", line 13, characters 11-12:
The command has indeed failed with message:
Cannot interpret this number as a value of type positive
File "./output/PosSyntax.v", line 14, characters 11-14:
The command has indeed failed with message:
Cannot interpret this number as a value of type positive
File "./output/PosSyntax.v", line 15, characters 11-15:
The command has indeed failed with message:
Cannot interpret this number as a value of type positive
1%positive
: positive
2%positive
: positive
255%positive
: positive
255%positive
: positive
1%positive
: positive
2%positive
: positive
255%positive
: positive
255%positive
: positive
0x2a
: positive
0x1
: positive
File "./output/PosSyntax.v", line 29, characters 11-14:
The command has indeed failed with message:
Cannot interpret this number as a value of type positive
File "./output/PosSyntax.v", line 30, characters 11-15:
The command has indeed failed with message:
Cannot interpret this number as a value of type positive
0x1
: positive
0x2
: positive
0xff
: positive
0xff
: positive
File "./output/PosSyntax.v", line 35, characters 11-14:
The command has indeed failed with message:
Cannot interpret this number as a value of type positive
File "./output/PosSyntax.v", line 36, characters 11-15:
The command has indeed failed with message:
Cannot interpret this number as a value of type positive
0x1
: positive
0x2
: positive
0xff
: positive
0xff
: positive
File "./output/PosSyntax.v", line 41, characters 11-14:
The command has indeed failed with message:
Cannot interpret this number as a value of type positive
File "./output/PosSyntax.v", line 42, characters 11-15:
The command has indeed failed with message:
Cannot interpret this number as a value of type positive
0x1
: positive
0x2
: positive
0xff
: positive
0xff
: positive
(1 + Pos.of_nat 11)%positive
: positive
|