├── scripts ├── python.py ├── r.r ├── racket.rkt ├── tcl.tcl ├── abc.abc ├── batch.bat ├── boo.boo ├── crystal.cr ├── julia.jl ├── lisp.lsp ├── matlab.mat ├── nim.nim ├── php.php ├── qbaisc.bas ├── ruby.rb ├── scilab.sce ├── shell.sh ├── sql.sql ├── chapel.chpl ├── groovy.groovy ├── haskell.hs ├── kalaam.kalam ├── rockstar.rock ├── swift.swift ├── visualfoxpro.vfp ├── apex.apex ├── befunge.be ├── javascript.js ├── powershell.ps1 ├── tex.tex ├── vbscript.vbs ├── algol.alg ├── bash.sh ├── coffescript.coffee ├── red.red ├── perl.plx ├── salesforceapex.cls ├── vimscript.vimrc ├── css.css ├── lua.lua ├── mcfunction.mcfunction ├── rust.rs ├── vlang.v ├── dart.dart ├── uwu++.uwu ├── yorick.i ├── lolcode.lol ├── pascal.pas ├── scale.scale ├── delphi.dpr ├── euphoria.ex ├── fortan(1957).f ├── scala.sc ├── f#.fs ├── pony.py ├── typescript.ts ├── arnoldc.arnoldc ├── trumpscript.tr ├── kanyec.kanyec ├── objectivec.m ├── ante.ante ├── golang.go ├── solidity.sol ├── z#.zs ├── ballerina.bal ├── c.c ├── dlang.d ├── postscript.ps ├── zombie.z ├── ada.adb ├── erlang.erl ├── haxe.hx ├── react.jsx ├── carbon.carbon ├── cpp.cpp ├── clojure.clj ├── java.java ├── c#.cs ├── cuda.cu ├── kotlin.kt ├── cobol.cobol ├── perl.pl ├── brainfuck.bf ├── html.html ├── mips.s ├── eiffel.e ├── visualbasicnet.vb ├── zig.zig ├── assembly.asm ├── bhailang.bhai ├── whitespace.ws ├── cow.k └── shakespearelang.spl ├── applescript.scpt ├── elixir.exs ├── Scala ├── LICENSE └── README.md /scripts/python.py: -------------------------------------------------------------------------------- 1 | print("Hello World!") -------------------------------------------------------------------------------- /scripts/r.r: -------------------------------------------------------------------------------- 1 | cat('Hello World!') 2 | -------------------------------------------------------------------------------- /scripts/racket.rkt: -------------------------------------------------------------------------------- 1 | "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/tcl.tcl: -------------------------------------------------------------------------------- 1 | puts "Hello World" 2 | -------------------------------------------------------------------------------- /applescript.scpt: -------------------------------------------------------------------------------- 1 | say "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/abc.abc: -------------------------------------------------------------------------------- 1 | WRITE "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/batch.bat: -------------------------------------------------------------------------------- 1 | echo Hello World! 2 | -------------------------------------------------------------------------------- /scripts/boo.boo: -------------------------------------------------------------------------------- 1 | print "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/crystal.cr: -------------------------------------------------------------------------------- 1 | puts "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/julia.jl: -------------------------------------------------------------------------------- 1 | print("Hello World") 2 | -------------------------------------------------------------------------------- /scripts/lisp.lsp: -------------------------------------------------------------------------------- 1 | (print "Hello World!") 2 | -------------------------------------------------------------------------------- /scripts/matlab.mat: -------------------------------------------------------------------------------- 1 | disp('Hello World!') 2 | -------------------------------------------------------------------------------- /scripts/nim.nim: -------------------------------------------------------------------------------- 1 | echo "Hello World!"; 2 | -------------------------------------------------------------------------------- /scripts/php.php: -------------------------------------------------------------------------------- 1 | echo "Hello World!"; 2 | -------------------------------------------------------------------------------- /scripts/qbaisc.bas: -------------------------------------------------------------------------------- 1 | PRINT "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/ruby.rb: -------------------------------------------------------------------------------- 1 | puts "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/scilab.sce: -------------------------------------------------------------------------------- 1 | disp("Hello World!") 2 | -------------------------------------------------------------------------------- /scripts/shell.sh: -------------------------------------------------------------------------------- 1 | echo "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/sql.sql: -------------------------------------------------------------------------------- 1 | SELECT 'Hello World!'; 2 | -------------------------------------------------------------------------------- /scripts/chapel.chpl: -------------------------------------------------------------------------------- 1 | writeln("Hello World!"); 2 | -------------------------------------------------------------------------------- /scripts/groovy.groovy: -------------------------------------------------------------------------------- 1 | print 'Hello World!' 2 | -------------------------------------------------------------------------------- /scripts/haskell.hs: -------------------------------------------------------------------------------- 1 | main = putStrLn "Hello World!" -------------------------------------------------------------------------------- /scripts/kalaam.kalam: -------------------------------------------------------------------------------- 1 | दिखाए(नमस्कार संसार) 2 | -------------------------------------------------------------------------------- /scripts/rockstar.rock: -------------------------------------------------------------------------------- 1 | Shout "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/swift.swift: -------------------------------------------------------------------------------- 1 | print("Hello World!") 2 | -------------------------------------------------------------------------------- /scripts/visualfoxpro.vfp: -------------------------------------------------------------------------------- 1 | ? "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/apex.apex: -------------------------------------------------------------------------------- 1 | system.debug('Hello World!'); 2 | -------------------------------------------------------------------------------- /scripts/befunge.be: -------------------------------------------------------------------------------- 1 | >"!dlroW olleH",,,,,,,,,,,@ 2 | -------------------------------------------------------------------------------- /scripts/javascript.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World!") 2 | -------------------------------------------------------------------------------- /scripts/powershell.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/tex.tex: -------------------------------------------------------------------------------- 1 | tex '\empty Hello World! \bye' 2 | -------------------------------------------------------------------------------- /scripts/vbscript.vbs: -------------------------------------------------------------------------------- 1 | Wscript.Echo "Hello World!" 2 | -------------------------------------------------------------------------------- /scripts/algol.alg: -------------------------------------------------------------------------------- 1 | BEGIN DISPLAY("Hello World!") END. 2 | -------------------------------------------------------------------------------- /scripts/bash.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello World!" 3 | -------------------------------------------------------------------------------- /scripts/coffescript.coffee: -------------------------------------------------------------------------------- 1 | console.log("Hello World!") 2 | -------------------------------------------------------------------------------- /scripts/red.red: -------------------------------------------------------------------------------- 1 | Red [] 2 | 3 | print "Hello World!" 4 | -------------------------------------------------------------------------------- /scripts/perl.plx: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | print "Hello World!"; 3 | -------------------------------------------------------------------------------- /scripts/salesforceapex.cls: -------------------------------------------------------------------------------- 1 | System.debug('Hello World!'); 2 | -------------------------------------------------------------------------------- /scripts/vimscript.vimrc: -------------------------------------------------------------------------------- 1 | echo "Hello World!" 2 | sleep 5 3 | -------------------------------------------------------------------------------- /scripts/css.css: -------------------------------------------------------------------------------- 1 | body::before { 2 | content: "Hello World!"; 3 | } -------------------------------------------------------------------------------- /scripts/lua.lua: -------------------------------------------------------------------------------- 1 | -- Hello World in Lua 2 | print("Hello World!") 3 | -------------------------------------------------------------------------------- /scripts/mcfunction.mcfunction: -------------------------------------------------------------------------------- 1 | tellraw @a {"text":"Hello World!"} 2 | -------------------------------------------------------------------------------- /scripts/rust.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello World!"); 3 | } -------------------------------------------------------------------------------- /scripts/vlang.v: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println('Hello World!') 3 | } 4 | -------------------------------------------------------------------------------- /scripts/dart.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print("Hello World!"); 3 | } 4 | -------------------------------------------------------------------------------- /scripts/uwu++.uwu: -------------------------------------------------------------------------------- 1 | nuzzels("Hello World!") 2 | nuzzels("Hewwo Wowld!") 3 | -------------------------------------------------------------------------------- /scripts/yorick.i: -------------------------------------------------------------------------------- 1 | #!/usr/bin/yorick -batch 2 | print, "Hello World!"; 3 | -------------------------------------------------------------------------------- /scripts/lolcode.lol: -------------------------------------------------------------------------------- 1 | HAI 1.2 2 | VISIBLE "Hello World!" 3 | KTHXBYE 4 | -------------------------------------------------------------------------------- /scripts/pascal.pas: -------------------------------------------------------------------------------- 1 | program Hello; 2 | begin 3 | writeln ('Hello World!'); 4 | end. -------------------------------------------------------------------------------- /scripts/scale.scale: -------------------------------------------------------------------------------- 1 | function main(): none 2 | "Hello World!" puts 3 | end 4 | -------------------------------------------------------------------------------- /scripts/delphi.dpr: -------------------------------------------------------------------------------- 1 | program HelloWorld; 2 | begin 3 | WriteLn('Hello World!'); 4 | end. 5 | -------------------------------------------------------------------------------- /scripts/euphoria.ex: -------------------------------------------------------------------------------- 1 | #!/home/euphoria-4.0b2/bin/eui 2 | 3 | puts(1, "Hello World!\n") 4 | -------------------------------------------------------------------------------- /scripts/fortan(1957).f: -------------------------------------------------------------------------------- 1 | PROGRAM Hello 2 | WRITE (*,*) 'Hello, World!' 3 | STOP 4 | END 5 | -------------------------------------------------------------------------------- /scripts/scala.sc: -------------------------------------------------------------------------------- 1 | object HelloWorld extends App { 2 | printIn("Hello World!") 3 | } 4 | -------------------------------------------------------------------------------- /scripts/f#.fs: -------------------------------------------------------------------------------- 1 | [] 2 | let main argv = 3 | printfn "Hello World!" 4 | 0 5 | -------------------------------------------------------------------------------- /scripts/pony.py: -------------------------------------------------------------------------------- 1 | actor Main 2 | new create(env: Env) => 3 | env.out.print("Hello World!") 4 | -------------------------------------------------------------------------------- /scripts/typescript.ts: -------------------------------------------------------------------------------- 1 | let typescript:string = 'Hello World!' 2 | 3 | console.log(typescript) 4 | -------------------------------------------------------------------------------- /scripts/arnoldc.arnoldc: -------------------------------------------------------------------------------- 1 | IT'S SHOWTIME 2 | TALK TO THE HAND "Hello World!" 3 | YOU HAVE BEEN TERMINATED -------------------------------------------------------------------------------- /scripts/trumpscript.tr: -------------------------------------------------------------------------------- 1 | make America "Hello World!" 2 | 3 | say America 4 | 5 | America is great 6 | -------------------------------------------------------------------------------- /scripts/kanyec.kanyec: -------------------------------------------------------------------------------- 1 | I am the greatest 2 | make her say "Hello World!" 3 | I still think I am the greatest 4 | -------------------------------------------------------------------------------- /scripts/objectivec.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | int main (void) 4 | { 5 | printf ("Hello World!\n"); 6 | } 7 | -------------------------------------------------------------------------------- /elixir.exs: -------------------------------------------------------------------------------- 1 | #official website - https://elixir-lang.org/ 2 | import IO, only: [puts: 1] 3 | puts("Hello World!") 4 | -------------------------------------------------------------------------------- /scripts/ante.ante: -------------------------------------------------------------------------------- 1 | 9♦8♥J♦A♦2♣3♥7♠J♦A♦7♦J♦J♦A♦3♦J♦5♥6♦4♥J♥A♥6♠6♠J♥A♦8♦J♦A♦8♠J♦A♦3♦J♦A♦6♠J♦A♦8♠J♦A♥3♦2♠J♥A♥2♣6♠J♥ 2 | -------------------------------------------------------------------------------- /scripts/golang.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "fmt" 4 | 5 | func main() { 6 | fmt.Println("Hello World!") 7 | } 8 | -------------------------------------------------------------------------------- /scripts/solidity.sol: -------------------------------------------------------------------------------- 1 | pragma solidity ^0.8.0; 2 | contract HelloWorld 3 | { 4 | String s="Hello World!"; 5 | } 6 | -------------------------------------------------------------------------------- /scripts/z#.zs: -------------------------------------------------------------------------------- 1 | func Main() // the main method is the start of the program. 2 | { 3 | print "Hello World!" 4 | } 5 | -------------------------------------------------------------------------------- /scripts/ballerina.bal: -------------------------------------------------------------------------------- 1 | import ballerina/io; 2 | 3 | public function main() { 4 | io:println("Hello World!"); 5 | } 6 | -------------------------------------------------------------------------------- /scripts/c.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(void) 4 | { 5 | printf("Hello World!"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /scripts/dlang.d: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env rdmd 2 | import std.stdio; 3 | void main() 4 | { 5 | writeln("Hello World!"); 6 | } 7 | -------------------------------------------------------------------------------- /scripts/postscript.ps: -------------------------------------------------------------------------------- 1 | %!PS 2 | /Palatino-Roman 20 selectfont 3 | 300 400 moveto 4 | (Hello World!) show 5 | showpage 6 | -------------------------------------------------------------------------------- /scripts/zombie.z: -------------------------------------------------------------------------------- 1 | HelloWorld is a zombie 2 | summon 3 | task SayHello 4 | say "Hello World!" 5 | animate 6 | animate 7 | -------------------------------------------------------------------------------- /scripts/ada.adb: -------------------------------------------------------------------------------- 1 | with Text_IO; use Text_IO; 2 | procedure hello is 3 | begin 4 | Put_Line("Hello World!"); 5 | end hello; 6 | -------------------------------------------------------------------------------- /scripts/erlang.erl: -------------------------------------------------------------------------------- 1 | -module(hello_world). 2 | -export([start/0]). 3 | 4 | start() -> 5 | io:fwrite("Hello World!\n"). 6 | -------------------------------------------------------------------------------- /scripts/haxe.hx: -------------------------------------------------------------------------------- 1 | class HelloWorld { 2 | static public function main():Void { 3 | trace("Hello World!"); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /scripts/react.jsx: -------------------------------------------------------------------------------- 1 | const root = ReactDOM.createRoot(document.getElementById('root')); 2 | root.render(

Hello World!

); 3 | -------------------------------------------------------------------------------- /scripts/carbon.carbon: -------------------------------------------------------------------------------- 1 | package Sample api; 2 | 3 | fn Main() -> i32 { 4 | Print("Hello World!"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /Scala: -------------------------------------------------------------------------------- 1 | object Language 2 | { 3 | def main(args: Array[String]) 4 | { 5 | println("Hello World!") 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /scripts/cpp.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace std; 3 | 4 | int main(){ 5 | cout<<"Hello World!"; 6 | return 0; 7 | } -------------------------------------------------------------------------------- /scripts/clojure.clj: -------------------------------------------------------------------------------- 1 | (ns clojure.examples.hello 2 | (:gen-class)) 3 | (defn hello-world [] 4 | (println "Hello World!")) 5 | (hello-world) 6 | -------------------------------------------------------------------------------- /scripts/java.java: -------------------------------------------------------------------------------- 1 | public class java { 2 | public static void main(String[] args) { 3 | System.out.println("Hello World!"); 4 | } 5 | } -------------------------------------------------------------------------------- /scripts/c#.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | internal static class HelloWorld { 4 | private static void Main() { 5 | Console.WriteLine("Hello, World!"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /scripts/cuda.cu: -------------------------------------------------------------------------------- 1 | __global__ void cuda_hello(){ 2 | printf("Hello World!\n"); 3 | } 4 | 5 | int main() { 6 | cuda_hello<<<1,1>>>(); 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /scripts/kotlin.kt: -------------------------------------------------------------------------------- 1 | package org.kotlinlang.play // 1 2 | 3 | fun main() { // 2 4 | 5 | println("Hello World!") // 3 6 | 7 | } 8 | -------------------------------------------------------------------------------- /scripts/cobol.cobol: -------------------------------------------------------------------------------- 1 | IDENTIFICATION DIVISION. 2 | PROGRAM-ID. IDSAMPLE. 3 | ENVIRONMENT DIVISION. 4 | PROCEDURE DIVISION. 5 | DISPLAY 'Hello World!'. 6 | STOP RUN. 7 | -------------------------------------------------------------------------------- /scripts/perl.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | 4 | # Modules 5 | use strict; 6 | use warnings; 7 | 8 | # Let's Print The Function :) 9 | print("Hello World!\n"); 10 | -------------------------------------------------------------------------------- /scripts/brainfuck.bf: -------------------------------------------------------------------------------- 1 | >+++++++++[<++++++++>-]<.>+++++++[<++++>-]<+.+++++++..+++.>>>++++++++[<++++>-] 2 | <.>>>++++++++++[<+++++++++>-]<---.<<<<.+++.------.--------.>>+.>++++++++++. 3 | -------------------------------------------------------------------------------- /scripts/html.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World! 5 | 6 | 7 | Hello World! 8 | 9 | 10 | -------------------------------------------------------------------------------- /scripts/mips.s: -------------------------------------------------------------------------------- 1 | .data 2 | str: .asciiz "Hello World!" 3 | .text 4 | 5 | main: 6 | li $v0,4 7 | la $a0,str 8 | syscall 9 | 10 | jr $ra 11 | syscall 12 | -------------------------------------------------------------------------------- /scripts/eiffel.e: -------------------------------------------------------------------------------- 1 | class 2 | HELLO_WORLD 3 | create 4 | make 5 | feature 6 | make 7 | do 8 | print ("Hello World!%N") 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /scripts/visualbasicnet.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Module helloWorld 3 | Sub Main() 4 | Console.WriteLine("Hello World!") 5 | Console.ReadKey() 6 | End Sub 7 | End Module 8 | -------------------------------------------------------------------------------- /scripts/zig.zig: -------------------------------------------------------------------------------- 1 | const std = @import("std"); 2 | 3 | pub fn main() !void { 4 | const stdout = std.io.getStdOut().writer(); 5 | try stdout.print("Hello {}!\n", .{"World"}); 6 | } 7 | -------------------------------------------------------------------------------- /scripts/assembly.asm: -------------------------------------------------------------------------------- 1 | bdos equ 0005H ; BDOS entry point 2 | start: mvi c,9 ; BDOS function: output string 3 | lxi d,msg$ ; address of msg 4 | call bdos 5 | ret ; return to CCP 6 | 7 | msg$: db 'Hello, World!$' 8 | end start 9 | -------------------------------------------------------------------------------- /scripts/bhailang.bhai: -------------------------------------------------------------------------------- 1 | hi bhai 2 | bol bhai "Hello World"; 3 | bye bhai 4 | 5 | //official website - bhailang.js.org/ 6 | 7 | //Usage - 8 | //1. Install as a npm package - npm i -g bhailang 9 | //2. Create a file with .bhai extension (like hello.bhai) 10 | //3. Run in terminal using code - `bhai ` (like bhai hello.bhai) 11 | -------------------------------------------------------------------------------- /scripts/whitespace.ws: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /scripts/cow.k: -------------------------------------------------------------------------------- 1 | MoO MoO MoO MoO MoO MoO MoO MoO MOO moO MoO MoO MoO MoO MoO moO MoO MoO MoO MoO moO MoO MoO MoO MoO moO MoO MoO MoO MoO MoO MoO MoO 2 | MoO MoO moO MoO MoO MoO MoO mOo mOo mOo mOo mOo MOo moo moO moO moO moO Moo moO MOO mOo MoO moO MOo moo mOo MOo MOo MOo Moo MoO MoO 3 | MoO MoO MoO MoO MoO Moo Moo MoO MoO MoO Moo MMM mOo mOo mOo MoO MoO MoO MoO Moo moO Moo MOO moO moO MOo mOo mOo MOo moo moO moO MoO 4 | MoO MoO MoO MoO MoO MoO MoO Moo MMM MMM Moo MoO MoO MoO Moo MMM MOo MOo MOo Moo MOo MOo MOo MOo MOo MOo MOo MOo Moo mOo MoO Moo -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Dominik K. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hello World! 2 | 3 | Hello World in every single programming language out there. 4 | GitHub repo size 5 | 6 | hello-world 7 | 8 |

9 |  forks 10 |

11 | 12 | ## Contributing 13 | 14 | Contributions are always welcome! 15 | 16 | If you want to contribute follow the following steps. 17 | 18 | 1. Fork this repository. 19 | 20 | 2. Add a new file in the `scripts` folder. Name the file after the language and add code that prints out "Hello World!". 21 | 22 | 3. Open a pull request and wait for me to merge it! 23 | 24 | Congrats you sucessfully contributed🥳 25 | 26 | 27 | ## Inspiration 28 | 29 | Inspired by [hello-world-all-langs](https://github.com/calixtocarolina/hello-world-all-langs). 30 | 31 | ## Contributors 32 | 33 | **Thanks goes to these wonderful people ❤️** 34 | 35 |
36 |
37 | 38 | 39 | 40 |
41 | -------------------------------------------------------------------------------- /scripts/shakespearelang.spl: -------------------------------------------------------------------------------- 1 | Romeo, a young man with a remarkable patience. 2 | Juliet, a likewise young woman of remarkable grace. 3 | Ophelia, a remarkable woman much in dispute with Hamlet. 4 | Hamlet, the flatterer of Andersen Insulting A/S. 5 | 6 | Act I: Hamlet's insults and flattery. 7 | Scene I: The insulting of Romeo. 8 | [Enter Hamlet and Romeo] 9 | Hamlet: 10 | You lying stupid fatherless big smelly half-witted coward! You are as 11 | stupid as the difference between a handsome rich brave hero and thyself! 12 | Speak your mind! 13 | You are as brave as the sum of your fat little stuffed misused dusty 14 | old rotten codpiece and a beautiful fair warm peaceful sunny summer's 15 | day. You are as healthy as the difference between the sum of the 16 | sweetest reddest rose and my father and yourself! Speak your mind! 17 | You are as cowardly as the sum of yourself and the difference 18 | between a big mighty proud kingdom and a horse. Speak your mind. 19 | Speak your mind! 20 | [Exit Romeo] 21 | Scene II: The praising of Juliet. 22 | [Enter Juliet] 23 | Hamlet: 24 | Thou art as sweet as the sum of the sum of Romeo and his horse and his 25 | black cat! Speak thy mind! 26 | [Exit Juliet] 27 | Scene III: The praising of Ophelia. 28 | [Enter Ophelia] 29 | Hamlet: 30 | Thou art as lovely as the product of a large rural town and my amazing 31 | bottomless embroidered purse. Speak thy mind! 32 | Thou art as loving as the product of the bluest clearest sweetest sky 33 | and the sum of a squirrel and a white horse. Thou art as beautiful as 34 | the difference between Juliet and thyself. Speak thy mind! 35 | [Exeunt Ophelia and Hamlet] 36 | 37 | Act II: Behind Hamlet's back. 38 | Scene I: Romeo and Juliet's conversation. 39 | [Enter Romeo and Juliet] 40 | Romeo: 41 | Speak your mind. You are as worried as the sum of yourself and the 42 | difference between my small smooth hamster and my nose. Speak your 43 | mind! 44 | Juliet: 45 | Speak YOUR mind! You are as bad as Hamlet! You are as small as the 46 | difference between the square of the difference between my little pony 47 | and your big hairy hound and the cube of your sorry little 48 | codpiece. Speak your mind! 49 | [Exit Romeo] 50 | Scene II: Juliet and Ophelia's conversation. 51 | [Enter Ophelia] 52 | Juliet: 53 | Thou art as good as the quotient between Romeo and the sum of a small 54 | furry animal and a leech. Speak your mind! 55 | Ophelia: 56 | Thou art as disgusting as the quotient between Romeo and twice the 57 | difference between a mistletoe and an oozing infected blister! Speak 58 | your mind! 59 | [Exeunt] 60 | --------------------------------------------------------------------------------