Share to: share facebook share twitter share wa share telegram print page

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; 2 months 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.[30] 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. ^ EasyCrypt/easycrypt, EasyCrypt, 5 July 2024, retrieved 5 July 2024
  26. ^ "Messenger.com Now 50% Converted to Reason · Reason". reasonml.github.io. Retrieved 27 February 2018.
  27. ^ "Flow: A Static Type Checker for JavaScript". Flow. Archived from the original on 8 April 2022. Retrieved 10 February 2019.
  28. ^ "Infer static analyzer". Infer.
  29. ^ "WebAssembly/spec: WebAssembly specification, reference interpreter, and test suite". World Wide Web Consortium. 5 December 2019. Retrieved 14 May 2021 – via GitHub.
  30. ^ "Companies using OCaml". OCaml.org. Retrieved 14 May 2021.
  31. ^ "BuckleScript: The 1.0 release has arrived! | Tech at Bloomberg". Tech at Bloomberg. 8 September 2016. Retrieved 21 May 2017.
  32. ^ 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.
  33. ^ "Flow on GitHub". GitHub. 2023.
  34. ^ Yaron Minsky (1 November 2011). "OCaml for the Masses". Retrieved 2 May 2015.
  35. ^ Yaron Minsky (2016). "Keynote - Observations of a Functional Programmer". ACM Commercial Uses of Functional Programming.
  36. ^ Yaron Minsky (2023). "Signals & Threads" (Podcast). Jane Street Capital.
  37. ^ Anil Madhavapeddy (2016). "Improving Docker with Unikernels: Introducing HyperKit, VPNKit and DataKit". Docker, Inc.
  38. ^ "VPNKit on GitHub". GitHub. 2023.

External links

Read other articles:

この項目では、煙を出す道具について説明しています。炎を出す道具については「発炎筒」をご覧ください。 航空救難訓練において、携帯通信機と発煙筒により自己位置を標識する要救助者 発煙筒(はつえんとう)は、火薬を用いて点火することにより、大量の煙を吹き上げ狼煙を上げる器具である。花火の原理を利用している。 用途 民間用 妨害のため屋内で発煙筒を…

BatuwarnoKecamatanPeta lokasi Kecamatan BatuwarnoNegara IndonesiaProvinsiJawa TengahKabupatenWonogiriPemerintahan • CamatSyamsu Edi Budiman, BAPopulasi • Total18,235 (2.003) jiwaKode Kemendagri33.12.04 Kode BPS3312050 Luas51,65 km²Desa/kelurahan7 desa1 kelurahan Batuwarno adalah sebuah kecamatan di Kabupaten Wonogiri, Jawa Tengah. Kecamatan ini berjarak sekitar 42 Km dari ibu kota Kabupaten Wonogiri ke arah selatan melalui Baturetno. Pusat pemerintahannya berada di …

明海大学 浦安キャンパス大学設置/創立 1970年学校種別 私立設置者 学校法人明海大学本部所在地 千葉県浦安市明海1丁目北緯35度38分41.92秒 東経139度55分12.64秒 / 北緯35.6449778度 東経139.9201778度 / 35.6449778; 139.9201778座標: 北緯35度38分41.92秒 東経139度55分12.64秒 / 北緯35.6449778度 東経139.9201778度 / 35.6449778; 139.9201778キャンパス 浦安キャンパス(千

Para otros usos de este término, véase CEU. Universidad CEU Cardenal Herrera Lema Quid facet veritatem venit ad lucem[1]​«Quien obra la verdad va hacia la luz»Tipo PrivadaForma parte de Fundación Universitaria San Pablo CEUFundación 1999LocalizaciónDirección Carrer Lluís Vives, 1, 46115 Alfara del Patriarca, ValènciaValencia, Castellón de la Plana y Elche (Alicante), Comunidad Valenciana, España EspañaCoordenadas 39°33′N 0°24′O / 39.55, -0.4Administr…

خميس الأسرار   اليوم السنوي ثلاث أيام قبل عيد الفصح  [لغات أخرى]‏  تعديل مصدري - تعديل   صورة لكاهن من كنيسة الأرمن الأرثوذكس يقوم بغسل أرجل المصليين في يوم خميس العهد. خميس العهد[1] أو الغُسْل[1] ويعرف أيضاً بالخميس المقدس أو الخميس الأسرار وهو عيد مسيحي

PausSelestinus VAwal masa kepausan5 Juli 1294Akhir masa kepausan13 Desember 1294PendahuluNikolaus IVPenerusBonifatius VIIIInformasi pribadiNama lahirPietro AngelerioLahir1215dekat Isernia, ItaliaMeninggal19 Mei 1296Ferentino, Italia Selestinus V, nama lahir Pietro Angelerio (dekat Isernia, Italia, 1215 – Ferentino, Italia, 19 Mei 1296) adalah Paus Gereja Katolik Roma sejak 5 Juli 1294 sampai mengundurkan diri pada 13 Desember 1294. lbs Paus Gereja Katolik Daftar paus grafik masa jabatan orang …

Grotte du Trou-MadameIntérieur de la grotte du Trou-Madame.LocalisationCoordonnées 44° 01′ 59″ N, 6° 37′ 33″ EPays  FranceRégion française|Région Provence-Alpes-Côte d'AzurDépartement Alpes-de-Haute-ProvenceMassif Massif du PelatVallée Vallée de la VaïreLocalité voisine MéaillesCaractéristiquesType CalcaireAltitude de l'entrée 1 110 mLongueur connue 350 mPériode de formation ÉocèneLocalisation sur la carte des Alpes-de-…

Untuk pebisnis yang turut menandatangani surat tuntutan kematian untuk Raja Charles I dari Inggris, lihat John Downes (pebisnis). Untuk juru bisik Duke's Company, lihat John Downes (juru bisik). John Downes (Canton, 1786 – Charlestown, 11 Agustus 1854) adalah seorang perwira Angkatan Laut Amerika Serikat. Downes mengawali karier sebagai taruna sementara dari tanggal 9 September 1800 dan diangkat sebagai taruna pada tanggal 1 Juni 1802. Ia mencetak jejak istimewa selama perang dengan Berberia p…

Geophilomorpha Geophilus flavus Klasifikasi ilmiah Kerajaan: Animalia Filum: Arthropoda Subfilum: Myriapoda Kelas: Chilopoda Ordo: Geophilomorpha Famili Lihat teks Geophilomorpha adalah ordo ordo kelabang yang dicirikan dengan tubuhnya yang sangat memanjang, kurus, dan terdiri dari lebih dari 25 pasang kaki. Anggotanya hidup di bawah batu dan di dalam tanah. Anggotanya juga ahli dalam mengejar dan menangkap cacing tanah.[1] Ordo kelabang ini terdiri dari Lenyai (Geophilus) yang terkenal …

LabirinSingel oleh TulusDirilis24 Agustus 2018 (2018-08-24)StudioJembatan Studio JakartaGenre Pop jazz[1] Durasi3:10LabelDemajors TulusCompanyPenciptaPetra Sihombing TulusProduserPetra Sihombing TulusKronologi singel Tulus Semua Murid Semua Guru (2018) Labirin (2018) Natsu Wa Kinu (Japanese) (2018) Video musikLabirin di YouTube Labirin adalah sebuah lagu oleh penyanyi-penulis lagu Indonesia Tulus. Lagu ini ditulis oleh Tulus dan diproduseri oleh penyanyi-penulis lagu dan produser re…

Луї Матьє Моле Народився 24 січня 1781(1781-01-24)[1][2][…]Париж, Королівство ФранціяПомер 23 листопада 1855(1855-11-23)[1][2][…] (74 роки)Сен-е-Уаз, ФранціяКраїна  ФранціяДіяльність політик, посадова особаЗнання мов французька[1]Членство Французька академія і Sociét

أدان تشافيز   معلومات شخصية الميلاد 11 أبريل 1953 (70 سنة)  مواطنة فنزويلا  الأب هوغو دي لوس رييس تشافيز  إخوة وأخوات هوغو تشافيز،  ودومينغو خوسيه تشافيز فرياس  مناصب وزير   في المنصب6 يناير 2007  – 29 أبريل 2008  عميد   تولى المنصب14 فبراير 2023  الحياة العملية ا…

Bukan Cinderella BiasaGenre Drama Roman SkenarioAviv ElhamSutradaraAmin IshaqPemeran Adzwa Aurell Ridwan Ghany Raisya Bawazier Amaranggana Reza Pahlevi Evan Marvino Yadi Timo Katheleen Carolyne Raissa Ramadhani Steffanie Hariadi Emmie Lemu Stephanus Tjiptroet El Ryan Penggubah lagu tema Pay dan Dewiq Ahmad Dhani dan Andra Lagu pembuka Sebuah Rasa — Agnez Mo (Eps. 1—16) Separuh Nafas — Dewa (Eps. 17—22) Lagu penutup Sebuah Rasa — Agnez Mo (Eps. 1—16) Separuh Nafas — Dewa (Eps. 17—…

This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages) This article includes a list of references, related reading, or external links, but its sources remain unclear because it lacks inline citations. Please help to improve this article by introducing more precise citations. (November 2013) (Learn how and when to remove this template message)This article relies largely or entirely on a single sourc…

Overview of the current high-speed rail system in the Czech Republic Map of planned high-speed railroad in Czechia and neighboring countries High-speed rail in the Czech Republic is being planned with construction starting in 2026 and maximum speed between 200 and 320 km/h. Although České Dráhy owns and operates multiple rolling stock capable of speeds of 230 km/h (143 mph) since 2004, there is, as of 2023, no infrastructure capable of velocity over 200 km/h (124 mph). The…

Municipal building in Portsmouth, Hampshire, England Portsmouth GuildhallLocationPortsmouth, HampshireCoordinates50°47′52″N 1°05′34″W / 50.7979°N 1.0928°W / 50.7979; -1.0928Built1890ArchitectWilliam Hill (original design); Ernest Berry Webber (rebuild)Architectural style(s)Neo-classical style Listed Building – Grade IIDesignated25 September 1972Reference no.1104316 Location of Portsmouth Guildhall in Hampshire Portsmouth Guildhall is a multi-use buildin…

National Women's Rugby ChampionshipSportRugby unionInstituted1996Inaugural season1996Ceased2018Number of teams8CountryAustralia The National Women's Championship was the highest-tier competition of women's rugby union in Australia through the 2017 season. It was superseded as the top level of the women's sport by the new Super W competition from the 2018 season forward.[1] The annual tournament was contested by teams from every state except Tasmania. The Championship also acted as a …

American basketball player (born 1976) Brian SkinnerPersonal informationBorn (1976-05-19) May 19, 1976 (age 47)Temple, Texas, U.S.Listed height6 ft 9 in (2.06 m)Listed weight255 lb (116 kg)Career informationHigh schoolTemple (Temple, Texas)CollegeBaylor (1994–1998)NBA draft1998: 1st round, 22nd overall pickSelected by the Los Angeles ClippersPlaying career1998–2011PositionPower forward / centerNumber32, 8, 54, 3Career history1998–2001Los Angeles Clippers2001…

Bhagavad GitaSutradara G. V. Iyer Produser T. Subbarami Reddy Ditulis oleh Bannanje Govindacharya BerdasarkanBhagavad GitaPemeranNeena GuptaGopi ManoharG. V. RagahvendraGovindh RaoPenata musikMangalampalli BalamuralikrishnaSinematograferN. SwamyTanggal rilis1993Durasi140Negara India Bahasa Sanskerta Telugu Bhagavad Gita atau Bhagvad Gita: Song of the Lord adalah sebuah film Sanskerta 1993 yang diproduksi oleh T. Subbarami Reddy, dan disutradarai oleh G. V. Iyer. Film tersebut berdasarkan p…

  此条目的主題是國民黨籍的立法委員。关于其他在台灣曾出現過的同名政治人物,請見「林德福」。 林德福 中華民國第5-10屆立法委員现任就任日期2002年2月1日选区臺北縣第三選舉區(第5-6屆)臺北縣第九選舉區 (第7屆) (永和市、中和市-17里) 新北市第九選舉區 (第8-10屆) (永和區、中和區-17里) 个人资料性别男出生 (1953-10-23) 1953年10月23日(70歲) …

Kembali kehalaman sebelumnya

Lokasi Pengunjung: 3.139.72.164