OCaml

OCaml
ParadigmsMulti-paradigm: functional, imperative, modular,[1] object-oriented
FamilyML: Caml
Designed byXavier Leroy, Jérôme Vouillon, Damien Doligez, Didier Rémy, Ascánder Suárez
DeveloperInria
First appeared1996; 28 years ago (1996)[2]
Stable release
5.2.0[3] Edit this on Wikidata / 13 May 2024; 41 days ago (13 May 2024)
Typing disciplineInferred, static, strong, structural
Implementation languageOCaml, C
PlatformIA-32, x86-64, Power, SPARC, ARM 32-64, RISC-V
OSCross-platform: Linux, Unix, macOS, Windows
LicenseLGPLv2.1
Filename extensions.ml, .mli
Websiteocaml.org
Influenced by
C, Caml, Modula-3, Pascal, Standard ML
Influenced
ATS, Coq, Elm, F#, F*, Haxe, Opa, Rust,[4] Scala

OCaml (/ˈkæməl/ oh-KAM-əl, formerly Objective Caml) is a general-purpose, high-level, multi-paradigm programming language which extends the Caml dialect of ML with object-oriented features. OCaml was created in 1996 by Xavier Leroy, Jérôme Vouillon,[5] Damien Doligez, Didier Rémy,[6] Ascánder Suárez, and others.

The OCaml toolchain includes an interactive top-level interpreter, a bytecode compiler, an optimizing native code compiler, a reversible debugger, and a package manager (OPAM). OCaml was initially developed in the context of automated theorem proving, and is used in static analysis and formal methods software. Beyond these areas, it has found use in systems programming, web development, and specific financial utilities, among other application domains.

The acronym CAML originally stood for Categorical Abstract Machine Language, but OCaml omits this abstract machine.[7] OCaml is a free and open-source software project managed and principally maintained by the French Institute for Research in Computer Science and Automation (Inria). In the early 2000s, elements from OCaml were adopted by many languages, notably F# and Scala.

Philosophy

ML-derived languages are best known for their static type systems and type-inferring compilers. OCaml unifies functional, imperative, and object-oriented programming under an ML-like type system. Thus, programmers need not be highly familiar with the pure functional language paradigm to use OCaml.

By requiring the programmer to work within the constraints of its static type system, OCaml eliminates many of the type-related runtime problems associated with dynamically typed languages. Also, OCaml's type-inferring compiler greatly reduces the need for the manual type annotations that are required in most statically typed languages. For example, the data types of variables and the signatures of functions usually need not be declared explicitly, as they do in languages like Java and C#, because they can be inferred from the operators and other functions that are applied to the variables and other values in the code. Effective use of OCaml's type system can require some sophistication on the part of a programmer, but this discipline is rewarded with reliable, high-performance software.

OCaml is perhaps most distinguished from other languages with origins in academia by its emphasis on performance. Its static type system prevents runtime type mismatches and thus obviates runtime type and safety checks that burden the performance of dynamically typed languages, while still guaranteeing runtime safety, except when array bounds checking is turned off or when some type-unsafe features like serialization are used. These are rare enough that avoiding them is quite possible in practice.

Aside from type-checking overhead, functional programming languages are, in general, challenging to compile to efficient machine language code, due to issues such as the funarg problem. Along with standard loop, register, and instruction optimizations, OCaml's optimizing compiler employs static program analysis methods to optimize value boxing and closure allocation, helping to maximize the performance of the resulting code even if it makes extensive use of functional programming constructs.

Xavier Leroy has stated that "OCaml delivers at least 50% of the performance of a decent C compiler",[8] although a direct comparison is impossible. Some functions in the OCaml standard library are implemented with faster algorithms than equivalent functions in the standard libraries of other languages. For example, the implementation of set union in the OCaml standard library in theory is asymptotically faster than the equivalent function in the standard libraries of imperative languages (e.g., C++, Java) because the OCaml implementation can exploit the immutability of sets to reuse parts of input sets in the output (see persistent data structure).

History

The OCaml development team receiving an award at Symposium on Principles of Programming Languages (POPL) 2024

Development of ML (Meta Language)

Between the 1970s and 1980s, Robin Milner, a British computer scientist and Turing Award winner, worked at the University of Edinburgh's Laboratory for Foundations of Computer Science.[9][10] Milner and others were working on theorem provers, which were historically developed in languages such as Lisp. Milner repeatedly ran into the issue that the theorem provers would attempt to claim a proof was valid by putting non-proofs together.[10] As a result, he went on to develop the meta language for his Logic for Computable Functions, a language that would only allow the writer to construct valid proofs with its polymorphic type system.[11] ML was turned into a compiler to simplify using LCF on different machines, and, by the 1980s, was turned into a complete system of its own.[11] ML would eventually serve as a basis for the creation of OCaml.

In the early 1980s, there were some developments that prompted INRIA's Formel team to become interested in the ML language. Luca Cardelli, a research professor at University of Oxford, used his functional abstract machine to develop a faster implementation of ML, and Robin Milner proposed a new definition of ML to avoid divergence between various implementations. Simultaneously, Pierre-Louis Curien, a senior researcher at Paris Diderot University, developed a calculus of categorical combinators and linked it to lambda calculus, which led to the definition of the categorical abstract machine (CAM). Guy Cousineau, a researcher at Paris Diderot University, recognized that this could be applied as a compiling method for ML.[12]

First implementation

Caml was initially designed and developed by INRIA's Formel team headed by Gérard Huet. The first implementation of Caml was created in 1987 and was further developed until 1992. Though it was spearheaded by Ascánder Suárez, Pierre Weis and Michel Mauny carried on with development after he left in 1988.[12]

Guy Cousineau is quoted recalling that his experience with programming language implementation was initially very limited, and that there were multiple inadequacies for which he is responsible. Despite this, he believes that "Ascander, Pierre and Michel did quite a nice piece of work.”[12]

Caml Light

Between 1990 and 1991, Xavier Leroy designed a new implementation of Caml based on a bytecode interpreter written in C. In addition to this, Damien Doligez wrote a memory management system, also known as a sequential garbage collector, for this implementation.[11] This new implementation, known as Caml Light, replaced the old Caml implementation and ran on small desktop machines.[12] In the following years, libraries such as Michel Mauny's syntax manipulation tools appeared and helped promote the use of Caml in educational and research teams.[11]

Caml Special Light

In 1995, Xavier Leroy released Caml Special Light, which was an improved version of Caml.[12] An optimizing native-code compiler was added to the bytecode compiler, which greatly increased performance to comparable levels with mainstream languages such as C++.[11][12] Also, Leroy designed a high-level module system inspired by the module system of Standard ML which provided powerful facilities for abstraction and parameterization and made larger-scale programs easier to build.[11]

Objective Caml

Didier Rémy and Jérôme Vouillon designed an expressive type system for objects and classes, which was integrated within Caml Special Light. This led to the emergence of the Objective Caml language, first released in 1996 and subsequently renamed to OCaml in 2011. This object system notably supported many prevalent object-oriented idioms in a statically type-safe way, while those same idioms caused unsoundness or required runtime checks in languages such as C++ or Java. In 2000, Jacques Garrigue extended Objective Caml with multiple new features such as polymorphic methods, variants, and labeled and optional arguments.[11][12]

Ongoing development

Language improvements have been incrementally added for the last two decades to support the growing commercial and academic codebases in OCaml.[11] The OCaml 4.0 release in 2012 added Generalized Algebraic Data Types (GADTs) and first-class modules to increase the flexibility of the language.[11] The OCaml 5.0.0 release in 2022[13] is a complete rewrite of the language runtime, removing the global GC lock and adding effect handlers via delimited continuations. These changes enable support for shared-memory parallelism and color-blind concurrency respectively.

OCaml's development continued within the Cristal team at INRIA until 2005, when it was succeeded by the Gallium team.[14] Subsequently, Gallium was succeeded by the Cambium team in 2019.[15][16] As of 2023, there are 23 core developers of the compiler distribution from a variety of organizations[17] and 41 developers for the broader OCaml tooling and packaging ecosystem.[18]

Features

OCaml features a static type system, type inference, parametric polymorphism, tail recursion, pattern matching, first class lexical closures, functors (parametric modules), exception handling, effect handling, and incremental generational automatic garbage collection.

OCaml is notable for extending ML-style type inference to an object system in a general-purpose language. This permits structural subtyping, where object types are compatible if their method signatures are compatible, regardless of their declared inheritance (an unusual feature in statically typed languages).

A foreign function interface for linking to C primitives is provided, including language support for efficient numerical arrays in formats compatible with both C and Fortran. OCaml also supports creating libraries of OCaml functions that can be linked to a main program in C, so that an OCaml library can be distributed to C programmers who have no knowledge or installation of OCaml.

The OCaml distribution contains:

The native code compiler is available for many platforms, including Unix, Microsoft Windows, and Apple macOS. Portability is achieved through native code generation support for major architectures:

The bytecode compiler supports operation on any 32- or 64-bit architecture when native code generation is not available, requiring only a C compiler.

OCaml bytecode and native code programs can be written in a multithreaded style, with preemptive context switching. OCaml threads in the same domain[20] execute by time sharing only. However, an OCaml program can contain several domains.

Code examples

Snippets of OCaml code are most easily studied by entering them into the top-level REPL. This is an interactive OCaml session that prints the inferred types of resulting or defined expressions.[21] The OCaml top-level is started by simply executing the OCaml program:

$ ocaml
     Objective Caml version 3.09.0
#

Code can then be entered at the "#" prompt. For example, to calculate 1+2*3:

# 1 + 2 * 3;;
- : int = 7

OCaml infers the type of the expression to be "int" (a machine-precision integer) and gives the result "7".

Hello World

The following program "hello.ml":

print_endline "Hello World!"

can be compiled into a bytecode executable:

$ ocamlc hello.ml -o hello

or compiled into an optimized native-code executable:

$ ocamlopt hello.ml -o hello

and executed:

$ ./hello
Hello World!
$

The first argument to ocamlc, "hello.ml", specifies the source file to compile and the "-o hello" flag specifies the output file.[22]

Option

The option type constructor in OCaml, similar to the Maybe type in Haskell, augments a given data type to either return Some value of the given data type, or to return None.[23] This is used to express that a value might or might not be present.

# Some 42;;
- : int option = Some 42
# None;;
- : 'a option = None

This is an example of a function that either extracts an int from an option, if there is one inside, and converts it into a string, or if not, returns an empty string:

let extract o =
  match o with
  | Some i -> string_of_int i
  | None -> "";;
# extract (Some 42);;
- : string = "42"
# extract None;;
- : string = ""

Summing a list of integers

Lists are one of the fundamental datatypes in OCaml. The following code example defines a recursive function sum that accepts one argument, integers, which is supposed to be a list of integers. Note the keyword rec which denotes that the function is recursive. The function recursively iterates over the given list of integers and provides a sum of the elements. The match statement has similarities to C's switch element, though it is far more general.

let rec sum integers =                   (* Keyword rec means 'recursive'. *)
  match integers with
  | [] -> 0                              (* Yield 0 if integers is the empty 
                                            list []. *)
  | first :: rest -> first + sum rest;;  (* Recursive call if integers is a non-
                                            empty list; first is the first 
                                            element of the list, and rest is a 
                                            list of the rest of the elements, 
                                            possibly []. *)
  # sum [1;2;3;4;5];;
  - : int = 15

Another way is to use standard fold function that works with lists.

let sum integers =
  List.fold_left (fun accumulator x -> accumulator + x) 0 integers;;
  # sum [1;2;3;4;5];;
  - : int = 15

Since the anonymous function is simply the application of the + operator, this can be shortened to:

let sum integers =
  List.fold_left (+) 0 integers

Furthermore, one can omit the list argument by making use of a partial application:

let sum =
  List.fold_left (+) 0

Quicksort

OCaml lends itself to concisely expressing recursive algorithms. The following code example implements an algorithm similar to quicksort that sorts a list in increasing order.

 let rec qsort = function
   | [] -> []
   | pivot :: rest ->
     let is_less x = x < pivot in
     let left, right = List.partition is_less rest in
     qsort left @ [pivot] @ qsort right

Or using partial application of the >= operator.

 let rec qsort = function
   | [] -> []
   | pivot :: rest ->
     let is_less = (>=) pivot in
     let left, right = List.partition is_less rest in
     qsort left @ [pivot] @ qsort right

Birthday problem

The following program calculates the smallest number of people in a room for whom the probability of completely unique birthdays is less than 50% (the birthday problem, where for 1 person the probability is 365/365 (or 100%), for 2 it is 364/365, for 3 it is 364/365 × 363/365, etc.) (answer = 23).

let year_size = 365.

let rec birthday_paradox prob people =
  let prob = (year_size -. float people) /. year_size *. prob  in
  if prob < 0.5 then
    Printf.printf "answer = %d\n" (people+1)
  else
    birthday_paradox prob (people+1)
;;

birthday_paradox 1.0 1

Church numerals

The following code defines a Church encoding of natural numbers, with successor (succ) and addition (add). A Church numeral n is a higher-order function that accepts a function f and a value x and applies f to x exactly n times. To convert a Church numeral from a functional value to a string, we pass it a function that prepends the string "S" to its input and the constant string "0".

let zero f x = x
let succ n f x = f (n f x)
let one = succ zero
let two = succ (succ zero)
let add n1 n2 f x = n1 f (n2 f x)
let to_string n = n (fun k -> "S" ^ k) "0"
let _ = to_string (add (succ two) two)

Arbitrary-precision factorial function (libraries)

A variety of libraries are directly accessible from OCaml. For example, OCaml has a built-in library for arbitrary-precision arithmetic. As the factorial function grows very rapidly, it quickly overflows machine-precision numbers (typically 32- or 64-bits). Thus, factorial is a suitable candidate for arbitrary-precision arithmetic.

In OCaml, the Num module (now superseded by the ZArith module) provides arbitrary-precision arithmetic and can be loaded into a running top-level using:

# #use "topfind";;
# #require "num";;
# open Num;;

The factorial function may then be written using the arbitrary-precision numeric operators =/, */ and -/ :

# let rec fact n =
    if n =/ Int 0 then Int 1 else n */ fact(n -/ Int 1);;
val fact : Num.num -> Num.num = <fun>

This function can compute much larger factorials, such as 120!:

# string_of_num (fact (Int 120));;
- : string =
"6689502913449127057588118054090372586752746333138029810295671352301633
55724496298936687416527198498130815763789321409055253440858940812185989
8481114389650005964960521256960000000000000000000000000000"

Triangle (graphics)

The following program renders a rotating triangle in 2D using OpenGL:

let () =
  ignore (Glut.init Sys.argv);
  Glut.initDisplayMode ~double_buffer:true ();
  ignore (Glut.createWindow ~title:"OpenGL Demo");
  let angle t = 10. *. t *. t in
  let render () =
    GlClear.clear [ `color ];
    GlMat.load_identity ();
    GlMat.rotate ~angle: (angle (Sys.time ())) ~z:1. ();
    GlDraw.begins `triangles;
    List.iter GlDraw.vertex2 [-1., -1.; 0., 1.; 1., -1.];
    GlDraw.ends ();
    Glut.swapBuffers () in
  GlMat.mode `modelview;
  Glut.displayFunc ~cb:render;
  Glut.idleFunc ~cb:(Some Glut.postRedisplay);
  Glut.mainLoop ()

The LablGL bindings to OpenGL are required. The program may then be compiled to bytecode with:

$ ocamlc -I +lablGL lablglut.cma lablgl.cma simple.ml -o simple

or to nativecode with:

$ ocamlopt -I +lablGL lablglut.cmxa lablgl.cmxa simple.ml -o simple

or, more simply, using the ocamlfind build command

$ ocamlfind opt simple.ml -package lablgl.glut -linkpkg -o simple

and run:

$ ./simple

Far more sophisticated, high-performance 2D and 3D graphical programs can be developed in OCaml. Thanks to the use of OpenGL and OCaml, the resulting programs can be cross-platform, compiling without any changes on many major platforms.

Fibonacci sequence

The following code calculates the Fibonacci sequence of a number n inputted. It uses tail recursion and pattern matching.

let fib n =
  let rec fib_aux m a b =
    match m with
    | 0 -> a
    | _ -> fib_aux (m - 1) b (a + b)
  in fib_aux n 0 1

Higher-order functions

Functions may take functions as input and return functions as result. For example, applying twice to a function f yields a function that applies f two times to its argument.

let twice (f : 'a -> 'a) = fun (x : 'a) -> f (f x);;
let inc (x : int) : int = x + 1;;
let add2 = twice inc;;
let inc_str (x : string) : string = x ^ " " ^ x;;
let add_str = twice(inc_str);;
  # add2 98;;
  - : int = 100
  # add_str "Test";;
  - : string = "Test Test Test Test"

The function twice uses a type variable 'a to indicate that it can be applied to any function f mapping from a type 'a to itself, rather than only to int->int functions. In particular, twice can even be applied to itself.

  # let fourtimes f = (twice twice) f;;
  val fourtimes : ('a -> 'a) -> 'a -> 'a = <fun>
  # let add4 = fourtimes inc;;
  val add4 : int -> int = <fun>
  # add4 98;;
  - : int = 102

Derived languages

MetaOCaml

MetaOCaml[24] is a multi-stage programming extension of OCaml enabling incremental compiling of new machine code during runtime. Under some circumstances, significant speedups are possible using multistage programming, because more detailed information about the data to process is available at runtime than at the regular compile time, so the incremental compiler can optimize away many cases of condition checking, etc.

As an example: if at compile time it is known that some power function x -> x^n is needed often, but the value of n is known only at runtime, a two-stage power function can be used in MetaOCaml:

let rec power n x =
  if n = 0
  then .<1>.
  else
    if even n
    then sqr (power (n/2) x)
    else .<.~x *. .~(power (n - 1) x)>.

As soon as n is known at runtime, a specialized and very fast power function can be created:

.<fun x -> .~(power 5 .<x>.)>.

The result is:

fun x_1 -> (x_1 *
    let y_3 = 
        let y_2 = (x_1 * 1)
        in (y_2 * y_2)
    in (y_3 * y_3))

The new function is automatically compiled.

Other derived languages

  • F# is a .NET framework language based on OCaml.
  • JoCaml integrates constructions for developing concurrent and distributed programs.
  • Reason is an alternative OCaml syntax and toolchain for OCaml created at Facebook, which can compile to both native code and JavaScript.

Software written in OCaml

Users

At least several dozen companies use OCaml to some degree.[29] Notable examples include:

References

  1. ^ "Modules". Retrieved 22 February 2020.
  2. ^ Leroy, Xavier (1996). "Objective Caml 1.00". caml-list mailing list.
  3. ^ "OCaml 5.2.0 Release Notes". Retrieved 24 May 2024.
  4. ^ "Influences - The Rust Reference". The Rust Reference. Retrieved 31 December 2023.
  5. ^ "Jérôme Vouillon". www.irif.fr. Retrieved 14 June 2024.
  6. ^ "Didier Remy". pauillac.inria.fr. Retrieved 14 June 2024.
  7. ^ "A History of OCaml". Retrieved 24 December 2016.
  8. ^ Linux Weekly News.
  9. ^ "A J Milner - A.M. Turing Award Laureate". amturing.acm.org. Retrieved 6 October 2022.
  10. ^ a b Clarkson, Michael; et al. "1.2. OCaml: Functional Programming in OCaml". courses.cs.cornell.edu. Retrieved 6 October 2022.
  11. ^ a b c d e f g h i "Prologue - Real World OCaml". dev.realworldocaml.org. Retrieved 6 October 2022.
  12. ^ a b c d e f g "A History of OCaml – OCaml". v2.ocaml.org. Retrieved 7 October 2022.
  13. ^ "Release of OCaml 5.0.0 OCaml Package". OCaml. Retrieved 16 December 2022.
  14. ^ "Projet Cristal". cristal.inria.fr. Retrieved 7 October 2022.
  15. ^ "Gallium team - Home". gallium.inria.fr. Retrieved 7 October 2022.
  16. ^ "Home". cambium.inria.fr. Retrieved 7 October 2022.
  17. ^ "OCaml compiler governance and membership". 2023.
  18. ^ "OCaml governance and projects". 2023.
  19. ^ "ocaml/asmcomp at trunk · ocaml/ocaml · GitHub". GitHub. Retrieved 2 May 2015.
  20. ^ A domain is a unit of parallelism in OCaml, a domain usually corresponds to a CPU core
  21. ^ "OCaml - The toplevel system or REPL (ocaml)". ocaml.org. Retrieved 17 May 2021.
  22. ^ "OCaml - Batch compilation (Ocamlc)".
  23. ^ "3.7. Options — OCaml Programming: Correct + Efficient + Beautiful". cs3110.github.io. Retrieved 7 October 2022.
  24. ^ oleg-at-okmij.org. "BER MetaOCaml". okmij.org.
  25. ^ "Messenger.com Now 50% Converted to Reason · Reason". reasonml.github.io. Retrieved 27 February 2018.
  26. ^ "Flow: A Static Type Checker for JavaScript". Flow. Archived from the original on 8 April 2022. Retrieved 10 February 2019.
  27. ^ "Infer static analyzer". Infer.
  28. ^ "WebAssembly/spec: WebAssembly specification, reference interpreter, and test suite". World Wide Web Consortium. 5 December 2019. Retrieved 14 May 2021 – via GitHub.
  29. ^ "Companies using OCaml". OCaml.org. Retrieved 14 May 2021.
  30. ^ "BuckleScript: The 1.0 release has arrived! | Tech at Bloomberg". Tech at Bloomberg. 8 September 2016. Retrieved 21 May 2017.
  31. ^ Scott, David; Sharp, Richard; Gazagnaire, Thomas; Madhavapeddy, Anil (2010). Using functional programming within an industrial product group: perspectives and perceptions. International Conference on Functional Programming. Association for Computing Machinery. doi:10.1145/1863543.1863557.
  32. ^ "Flow on GitHub". GitHub. 2023.
  33. ^ Yaron Minsky (1 November 2011). "OCaml for the Masses". Retrieved 2 May 2015.
  34. ^ Yaron Minsky (2016). "Keynote - Observations of a Functional Programmer". ACM Commercial Uses of Functional Programming.
  35. ^ Yaron Minsky (2023). "Signals & Threads" (Podcast). Jane Street Capital.
  36. ^ Anil Madhavapeddy (2016). "Improving Docker with Unikernels: Introducing HyperKit, VPNKit and DataKit". Docker, Inc.
  37. ^ "VPNKit on GitHub". GitHub. 2023.

External links

Read other articles:

Artikel ini sebatang kara, artinya tidak ada artikel lain yang memiliki pranala balik ke halaman ini.Bantulah menambah pranala ke artikel ini dari artikel yang berhubungan atau coba peralatan pencari pranala.Tag ini diberikan pada Oktober 2022. Kinoko no yama Kinoko no yama (きのこの山code: ja is deprecated ) adalah permen cokelat dari Jepang yang dibuat dalam bentuk jamur kecil. Kata kinoko berarti jamur dan yama berarti gunung. Induk dari jamur terbuat dari kue biskuit dan bagian atasnya …

Gempa bumi Nepal 20232023 नेपालमा भूकम्पPeta intensitas gempa bumi ini menurut USGSWaktu UTC2023-11-03 18:02:54ISC635879604USGS-ANSSComCatTanggal setempat3 November 2023 (2023-11-03)Waktu setempat23:47 NST (UTC+5:45)Kekuatan5.7 MwKedalaman32,6 km (20,3 mi)Episentrum28°53′17″N 82°11′42″E / 28.888°N 82.195°E / 28.888; 82.195Koordinat: 28°53′17″N 82°11′42″E / 28.888°N 82.195°E…

Ansar Bait al-Maqdisأنصار بيت المقدس Bendera Ansar Bait al-MaqdisBerkas:Ansar Bayt al-Maqdis (شعارات جماعة أنصار بيت المقدس 3).pngLambang Ansar Bait al-MaqdisPemimpinWaleed Waked (POW)[1]Ibrahim Mohamed Freg †[2]Shadi el-Manaei[3]Waktu operasi2011–10 November 2014[4]MarkasJazirah SinaiWilayah operasi Mesir Jalur Gaza[5][6]IdeologiJihadisme salafiJumlah anggota1.000[7]…

County in Pennsylvania, United States Not to be confused with Centre Region Council of Governments. County in PennsylvaniaCentre CountyCountyThe Centre County Courthouse in Bellefonte FlagSealLogoLocation within the U.S. state of PennsylvaniaPennsylvania's location within the U.S.Coordinates: 40°55′N 77°49′W / 40.91°N 77.82°W / 40.91; -77.82Country United StatesState PennsylvaniaFoundedFebruary 13, 1800Named forCentre Furnace, the first industrial facili…

Часть серии статей о Холокосте Идеология и политика Расовая гигиена · Расовый антисемитизм · Нацистская расовая политика · Нюрнбергские расовые законы Шоа Лагеря смерти Белжец · Дахау · Майданек · Малый Тростенец · Маутхаузен · …

Republic Entertainment, Inc. Republic Pictures Tipo anterior Subsidiária Atividade Entretenimento Fundação 1935 (original) 2023 (refundação) Fundador(es) Herbert J. Yates Encerramento 1967 (original) Ativa (atualmente) Sede Studio City, Los Angeles, Califórnia  Estados Unidos Empresa-mãe ViacomCBS Republic Pictures (também conhecida como Republic Entertainment, Inc.) é atualmente um selo de aquisições de distribuições de filmes da Paramount Global. No passado foi uma empre…

Konvoi Arktik pada Perang Dunia IIBagian dari Perang Dunia IIPemandangan dari kapal penjelajah HMS Sheffield saat kapal tersebut berlayar dalam tugas konvoi melalui perairan Samudra Arktik. Di latar belakang adalah kapal-kapal dagang dari konvoi tersebut.TanggalAgustus 1941 – Mei 1945LokasiLaut Norwegia dan Samudra ArktikHasil Kemenangan SekutuPihak terlibat  Britania Raya Uni Soviet Kanada Amerika Serikat Norwegia  JermanKorban 85 kapal dagang16 kapal perang…

قرية واترلو   الإحداثيات 42°54′13″N 76°51′34″W / 42.903611111111°N 76.859388888889°W / 42.903611111111; -76.859388888889  [1] تاريخ التأسيس 9 أبريل 1824  تقسيم إداري  البلد الولايات المتحدة[2]  التقسيم الأعلى مقاطعة سينيكا  عاصمة لـ مقاطعة سينيكا  خصائص جغرافية  المساحة 5.70789…

B.9 Nine-cylinder Salmson on display at the London Science Museum Type Radial engine Manufacturer British Salmson First run 1913 Number built 106 The Salmson B.9 was a French designed, nine-cylinder, water-cooled radial aero engine that was produced under license in Britain. The engine was produced between August 1914 and December 1918. The French version was designated 9B with a slightly increased capacity variant known as the R.9 or 9R.[1] A further variant known as the M.9 or 9M unusu…

Pour les articles homonymes, voir CMH. Centre Maurice-Halbwachs (CMH)Logo du Centre Maurice-HalbwachsHistoireFondation 2004CadreCode UMR 8097Type LaboratoireDomaine d'activité sociologieSiège Paris (48, boulevard Jourdan)Pays FranceCoordonnées 48° 49′ 20″ N, 2° 19′ 52″ EOrganisationChercheurs 50Chercheurs associés 50Doctorants 120Direction Serge PaugamOrganisations mères École normale supérieureÉcole des hautes études en sciences socialesAffiliati…

Church in New York City, United StatesChurch of Sts. Cyril & Methodius and St. RaphaelWest side of the church, 2011LocationHell's KitchenManhattan, New York CityCountryUnited StatesDenominationRoman CatholicWebsitecroatianchurchnewyork.orgHistoryFounded1886, 1913ArchitectureArchitect(s)George H. StreetonStyleGothic RevivalYears built1901–1903SpecificationsMaterialsStructural masonryFaçade: Manhattan schistRed brick with stone trimAdministrationArchdioceseNew York The Catholic Church of St…

Dmanissi დმანისი Partie occidentale de la commune Administration Pays Géorgie Subdivision Basse Kartlie Indicatif téléphonique +995 360 Démographie Population 3 600 hab. (2009[1]) Géographie Coordonnées 41° 19′ 00″ nord, 44° 21′ 00″ est Altitude 1 171 m Histoire Fondation début de l'Âge du bronze Première mention IXe siècle Statut village Localisation Géolocalisation sur la carte : Géorgie Dmanissi G…

Questa voce sull'argomento economisti statunitensi è solo un abbozzo. Contribuisci a migliorarla secondo le convenzioni di Wikipedia. Roger Myerson Premio Nobel per l'economia 2007 Roger Myerson (Boston, 29 marzo 1951) è un economista statunitense. Nel 2007 ha vinto il premio Nobel per l'economia (assegnatogli il 15 ottobre) insieme a Leonid Hurwicz e Eric Maskin per aver gettato le fondamenta della teoria del mechanism design[1]. Indice 1 Biografia 2 Pubblicazioni 2.1 Contributi …

Voce principale: Livorno Calcio. Associazione Sportiva Livorno CalcioStagione 2010-2011Sport calcio Squadra Livorno Allenatore Giuseppe Pillon (fino al 14 febbraio) Walter Novellino (dal 15 febbraio) Presidente Aldo Spinelli Serie B7º posto Coppa ItaliaQuarto turno Maggiori presenzeCampionato: De Lucia, Iori (39)Totale: De Lucia, Dionisi, Luci, Schiattarella (40) Miglior marcatoreCampionato: Dionisi e Tavano (10)Totale: Dionisi (11) StadioStadio Armando Picchi Abbonati2.700 2009-2010 2011-…

This article relies largely or entirely on a single source. Relevant discussion may be found on the talk page. Please help improve this article by introducing citations to additional sources.Find sources: 2002 West Virginia Senate election – news · newspapers · books · scholar · JSTOR (February 2024) 2002 West Virginia Senate elections ← 2000 November 5, 2002 2004 → ← These seats' last election (1998)These seats' next elec…

Penyuntingan Artikel oleh pengguna baru atau anonim untuk saat ini tidak diizinkan.Lihat kebijakan pelindungan dan log pelindungan untuk informasi selengkapnya. Jika Anda tidak dapat menyunting Artikel ini dan Anda ingin melakukannya, Anda dapat memohon permintaan penyuntingan, diskusikan perubahan yang ingin dilakukan di halaman pembicaraan, memohon untuk melepaskan pelindungan, masuk, atau buatlah sebuah akun. Artikel ini perlu dikembangkan dari artikel terkait di Wikipedia bahasa Inggris. …

Large knife or small sword wielded by Saxons and their contemporaries For the metal band, see Seax (band). Some Merovingian seaxes A seax (Old English pronunciation: [ˈsæɑks]; also sax, sæx, sex; invariant in plural, latinized sachsum) is a small sword, fighting knife or dagger typical of the Germanic peoples of the Migration Period and the Early Middle Ages, especially the Saxons. The name comes from an Old English word for knife.[1] In heraldry, the seax is a charge consist…

Перуанский анчоус Научная классификация Домен:ЭукариотыЦарство:ЖивотныеПодцарство:ЭуметазоиБез ранга:Двусторонне-симметричныеБез ранга:ВторичноротыеТип:ХордовыеПодтип:ПозвоночныеИнфратип:ЧелюстноротыеГруппа:Костные рыбыКласс:Лучепёрые рыбыПодкласс:Новопёрые ры…

Chinese dessert wine This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Lychee wine – news · newspapers · books · scholar · JSTOR (February 2020) (Learn how and when to remove this message) Lychee wine Lychee wine (Chinese: 荔枝酒, lìzhījiǔ) is a full-bodied Chinese dessert wine[1] made of 100%&…

Serbian folk singer (1951–2019) Šaban ŠaulićШабан ШаулићŠaulić performing in Sofia in March 2016.Born(1951-09-06)6 September 1951Šabac, PR Serbia, FPR YugoslaviaDied17 February 2019(2019-02-17) (aged 67)Bielefeld, North Rhine-Westphalia, GermanyCause of deathTraffic collisionOccupationSingerYears active1969–2019Spouse Gordana Dragaš ​(m. 1974⁠–⁠2019)​Children4ParentsHuso Šaulić (father)Ilduza Demirović (moth…

Kembali kehalaman sebelumnya