From a18d4f7aeeac5ec62701179db8b7fd9d9ffe9b2c Mon Sep 17 00:00:00 2001 From: Dilshan Karunarathne <45087212+dilshankarunarathne@users.noreply.github.com> Date: Tue, 8 Feb 2022 10:46:15 +0530 Subject: [PATCH 1/9] Create hello.rs Added Hello World program in Rust. --- languages/Rust/hello.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 languages/Rust/hello.rs diff --git a/languages/Rust/hello.rs b/languages/Rust/hello.rs new file mode 100644 index 0000000..47ad8c6 --- /dev/null +++ b/languages/Rust/hello.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello World!"); +} From 5fa244fd9914ccce2fce5ead62568143fcf36fcd Mon Sep 17 00:00:00 2001 From: George Filippas Date: Wed, 9 Feb 2022 01:25:14 +0200 Subject: [PATCH 2/9] Create html.html HTML5 (HyperText Markup Language) Filename extension .html, .htm Internet media type text/html Type code TEXT Uniform Type Identifier (UTI) public.html Developed by WHATWG Initial release 22 January 2008 (14 years ago) Type of format Markup language Standard HTML LS Open format? Yes --- languages/HTML5/html.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 languages/HTML5/html.html diff --git a/languages/HTML5/html.html b/languages/HTML5/html.html new file mode 100644 index 0000000..c4e49ef --- /dev/null +++ b/languages/HTML5/html.html @@ -0,0 +1,13 @@ + + + + + + + Hello World page title + + + + Hello, World! + + From fa16c0a60891a1137f49b8d5118832e0ffcc5ab6 Mon Sep 17 00:00:00 2001 From: Dilshan Karunarathne <45087212+dilshankarunarathne@users.noreply.github.com> Date: Wed, 9 Feb 2022 21:35:58 +0530 Subject: [PATCH 3/9] Create hello.pas --- languages/Pascal/hello.pas | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 languages/Pascal/hello.pas diff --git a/languages/Pascal/hello.pas b/languages/Pascal/hello.pas new file mode 100644 index 0000000..ab62b97 --- /dev/null +++ b/languages/Pascal/hello.pas @@ -0,0 +1,7 @@ +program HelloWorld; +uses crt; + +begin + writeln('Hello, World!'); + readkey; +end. From fca04f4e983371e4fa5b37631ee45770056a8465 Mon Sep 17 00:00:00 2001 From: Dilshan Karunarathne <45087212+dilshankarunarathne@users.noreply.github.com> Date: Wed, 9 Feb 2022 21:41:54 +0530 Subject: [PATCH 4/9] Create hello.swift --- languages/Swift/hello.swift | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 languages/Swift/hello.swift diff --git a/languages/Swift/hello.swift b/languages/Swift/hello.swift new file mode 100644 index 0000000..05cbe62 --- /dev/null +++ b/languages/Swift/hello.swift @@ -0,0 +1,2 @@ +import Swift +print("Hello, World!") From 9cf8a9c505cbeffe1c47699bac016e91fee6d21a Mon Sep 17 00:00:00 2001 From: Dilshan Karunarathne <45087212+dilshankarunarathne@users.noreply.github.com> Date: Wed, 9 Feb 2022 21:44:53 +0530 Subject: [PATCH 5/9] Create hello.pl --- languages/Perl/hello.pl | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 languages/Perl/hello.pl diff --git a/languages/Perl/hello.pl b/languages/Perl/hello.pl new file mode 100644 index 0000000..f388438 --- /dev/null +++ b/languages/Perl/hello.pl @@ -0,0 +1,3 @@ +#!/usr/bin/perl +use warnings; +print("Hello, World!\n"); From bbbf705663eead2b15249c72391b56b4a508d294 Mon Sep 17 00:00:00 2001 From: Dilshan Karunarathne <45087212+dilshankarunarathne@users.noreply.github.com> Date: Wed, 9 Feb 2022 21:49:19 +0530 Subject: [PATCH 6/9] Create Hello.scala --- languages/Scala/Hello.scala | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 languages/Scala/Hello.scala diff --git a/languages/Scala/Hello.scala b/languages/Scala/Hello.scala new file mode 100644 index 0000000..61fff5a --- /dev/null +++ b/languages/Scala/Hello.scala @@ -0,0 +1,5 @@ +object Hello { + def main(args: Array[String]) = { + println("Hello, World!") + } +} From f4881c6613dd1f1fd6a180f69fd2314847c070a3 Mon Sep 17 00:00:00 2001 From: Dilshan Karunarathne <45087212+dilshankarunarathne@users.noreply.github.com> Date: Wed, 9 Feb 2022 21:51:53 +0530 Subject: [PATCH 7/9] Create hello.m --- languages/Objective-C/hello.m | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 languages/Objective-C/hello.m diff --git a/languages/Objective-C/hello.m b/languages/Objective-C/hello.m new file mode 100644 index 0000000..d2c4983 --- /dev/null +++ b/languages/Objective-C/hello.m @@ -0,0 +1,5 @@ +#import + +int main(int argc, char * argv[]) { + NSLog(@"Hello, World!"); +} From 5756ae575ecaf5071c01b0511c495705ed607fc1 Mon Sep 17 00:00:00 2001 From: George Filippas Date: Wed, 16 Feb 2022 19:02:55 +0200 Subject: [PATCH 8/9] Create CAML.ml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Caml Paradigm Multi-paradigm: functional, imperative Family ML Designed by Gérard Huet, Guy Cousineau, Ascánder Suárez, Pierre Weis, Michel Mauny (Heavy Caml), Xavier Leroy (Caml Light) First appeared 1985 Stable release 0.75 / January 26, 2002; 20 years ago Typing discipline Inferred, static, strong OS Cross-platform Website caml.inria.fr Influenced by ML Influenced OCaml --- languages/CAML/CAML.ml | 1 + 1 file changed, 1 insertion(+) create mode 100644 languages/CAML/CAML.ml diff --git a/languages/CAML/CAML.ml b/languages/CAML/CAML.ml new file mode 100644 index 0000000..cd64f1d --- /dev/null +++ b/languages/CAML/CAML.ml @@ -0,0 +1 @@ +print_endline "Hello World";; From 787882bf259dc930ef7acde87a5afb0d0fabfc31 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Fri, 18 Mar 2022 20:59:27 -0300 Subject: [PATCH 9/9] Create portugol.por --- languages/Portugol/portugol.por | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 languages/Portugol/portugol.por diff --git a/languages/Portugol/portugol.por b/languages/Portugol/portugol.por new file mode 100644 index 0000000..4408f03 --- /dev/null +++ b/languages/Portugol/portugol.por @@ -0,0 +1,19 @@ +programa +{ + + funcao inicio() + { + escreva("Olá Mundo") + } +} +/* $$$ Portugol Studio $$$ + * + * Esta seção do arquivo guarda informações do Portugol Studio. + * Você pode apagá-la se estiver utilizando outro editor. + * + * @POSICAO-CURSOR = 12; + * @PONTOS-DE-PARADA = ; + * @SIMBOLOS-INSPECIONADOS = ; + * @FILTRO-ARVORE-TIPOS-DE-DADO = inteiro, real, logico, cadeia, caracter, vazio; + * @FILTRO-ARVORE-TIPOS-DE-SIMBOLO = variavel, vetor, matriz, funcao; + */ \ No newline at end of file