ea04414058
see new tests for a summary of new features see issue #800
10 lines
218 B
Text
10 lines
218 B
Text
import data.list data.examples.vector
|
|
open list vector nat
|
|
|
|
variables (A : Type) (a b c : A)
|
|
|
|
check [a, b, c]
|
|
check (#list [a, b, c])
|
|
check (#vector [a, b, c])
|
|
check ([a, b, c] : vector A _)
|
|
check ([a, b, c] : list A)
|