Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
4
Task/Abstract-type/OCaml/abstract-type-1.ocaml
Normal file
4
Task/Abstract-type/OCaml/abstract-type-1.ocaml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
class virtual foo =
|
||||
object
|
||||
method virtual bar : int
|
||||
end
|
||||
1
Task/Abstract-type/OCaml/abstract-type-2.ocaml
Normal file
1
Task/Abstract-type/OCaml/abstract-type-2.ocaml
Normal file
|
|
@ -0,0 +1 @@
|
|||
type t
|
||||
5
Task/Abstract-type/OCaml/abstract-type-3.ocaml
Normal file
5
Task/Abstract-type/OCaml/abstract-type-3.ocaml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
module Foo : sig
|
||||
type t
|
||||
end = struct
|
||||
type t = int * int
|
||||
end
|
||||
5
Task/Abstract-type/OCaml/abstract-type-4.ocaml
Normal file
5
Task/Abstract-type/OCaml/abstract-type-4.ocaml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
type u
|
||||
type v
|
||||
type 'a t
|
||||
type ut = u t
|
||||
type vt = v t
|
||||
Loading…
Add table
Add a link
Reference in a new issue