Arch is the best - ArchWiki (2024)

Table of Contents
History The code References

Arch is the best is a very sophisticated and exquisite, ego-boosting and mind-blowing (albeit perhaps a bit over-engineered) project which gives proof of Arch's superiority.

History

The visionary project was originally devised in April 2008 by long time Arch community member lucke as a simple shell script which provided irrefutable proof that "Arch is the best". It was announced to the world with a forum post, thus illuminating other people's minds, who immediately started porting it to multiple different languages, both programming and verbal, so that every being on the planet could fully appreciate and benefit from this revolutionary discovery.

The code

The "Arch is the best" project is ported to many programming languages.

1C:Enterprise
A procedural domain-specific compiled dynamically-typed programming language mostly similar to VisualBasic which is used in "1C:Enterprise" products widespread in Russia and other CIS countries.
Предупреждение("Arch is the best!");
ABAP
Advanced Business Application Programming language.
REPORT zwhat_is_the_best.WRITE 'Arch is the best'.
Ada
A systems critical programming language.
with Ada.Text_IO;use Ada.Text_IO;procedure ArchIsTheBest isbegin Put_Line("Arch is the best!");end ArchIsTheBest;
APL
A Programming Language.
'Arch is the best!'
AppleScript
A scripting language created by Apple Inc. and built into the Classic Mac OS since System 7 and into all versions of macOS.
display alert "Arch is the best!"say "Indeed, Arch is the best."
ArnoldC
Programming language based on the one-liners of Arnold Schwarzenegger.
IT'S SHOWTIMETALK TO THE HAND "Arch is the best!"YOU HAVE BEEN TERMINATED
ATS
A functional programming language that uses dependent types to improve programs' reliability.
implement main () = println! "Arch is the best!"
Awk
A data-driven programming language designed for processing text-based data.
BEGIN { print "Arch is the best!"}
BASIC
A scripting language that was one of the most commonly used computer programming languages in the 1960's, considered an easy step for students to learn before more powerful languages such as FORTRAN.
10 PRINT "Arch is the best!"
Batch
A scripting language for Windows that can be used to automate tasks or just have some fun.
@echo offecho Arch is the best!pause
Befunge
Believed to be the first two-dimensional, ASCII-based, general-purpose (in the sense of "you could plausibly write Hunt the Wumpus in it") programming language.
<v"Arch is the best!"0 <,_@#:
BIRL
Like ArnoldC, but for Bambam[1].
HORA DO SHOW CE QUER VER ESSA PORRA? ("Arch is the best!\n"); BORA CUMPADE 0;BIRL
Boo
A stablished object oriented statically typed programming language for .NET and Mono with a python inspired syntax and a special focus on metaprogramming through language and compiler extensibility features such as macros and custom compilation pipelines.
print "Arch is the best!"
Bourne shell
The original program, should be compatible with any shell.
#!/bin/shecho "Arch is the best!"
Bourne shell (Alternate)
Handy for piping the output to your favourite IRC/email/IM client. Should work with any shell.
#!/bin/shyes Arch is the best!
brainf*ck
Doesn't the language name explain it?
++>++++++>+++++<+[>[->+<]<->++++++++++<]>>.<[-]>[-<++>]<----------------.---------------.+++++.<+++[-<++++++++++>]<.>>+.++++++++++.<<.>>+.------------.---.<<.>>---.+++.++++++++++++++.+.<<+.[-]++++++++++.
C
Note the three space indenting used in this project, much like that used by other superior beings.
#include <stdio.h>int main(void){ puts("Arch is the best!"); return 0;}
C#
Intended to be a simple, modern, general-purpose, object-oriented programming language.
using System;Console.WriteLine ("Arch is the best!");
C++ (before C++23)
Arch == Linux++
#include <iostream>int main (){ std::cout << "Arch is the best!\n";}
C++23
New C++ Standard.
import std;int main(){ std::println("Arch is the best!");}
COBOL
A simple, lightweight programming language.
 IDENTIFICATION DIVISION. PROGRAM-ID. TheBest. PROCEDURE DIVISION. DISPLAY "Arch is the best!". STOP RUN.
CoffeeScript
A programming language that transcompiles to JavaScript.
alert 'Arch is the best!'
Clojure
A Lisp dialect that runs on the JVM.
(prn "Arch is the best!")
Common Lisp
A Lisp dialect
(princ "Arch is the best!")
Crystal
An object-oriented, Ruby-like language.
puts "Arch is the best!"
Crystal (through web server)
For distributing the message to multiple friends at once.
# For giving the message to your friendsrequire "http/server"server = HTTP::Server.new(80) do |context| context.response.content_type = "text/plain" context.response.print "Arch is the best!"endputs "Listening."server.listen
csh
A C-like shell.
#!/bin/cshecho "Arch is the best!"
CSS
A stylesheet language, heavily used for styling web pages.
body * { display: none;}body::before { content: "Arch is the best!"; font-family: monospace; font-size: 2.7rem; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);}
D
A C-style language. The benefits of hindsight, with modern conveniences.
 import std.stdio: writeln; void main() { writeln("Arch is the best"); }
Dart
Google's javascript killer
 main(){ print('Arch is the best'); }
DreamBerd
A perfect programming language
 print("Arch is the best")!

or even better:

 const const const arch = "the best"!
Dogescript
Doge-friendly JavaScript
 console.loge with ' So Arch' console.loge with ' Much Good' console.loge with ' Wow'
Ebuild
Gentoo's build script format.
DESCRIPTION="Arch is the best!"SRC_URI="https://wiki.archlinux.org/index.php/Arch_is_the_best"LICENSE="GFDL_1.3"SLOT="0"KEYWORDS=""IUSE=""DEPEND=""RDEPEND=""src_compile() {einfo "Arch is the best!"}
Enkelt
Based on Python but the syntax is in Swedish.
skriv ("Arch är bäst!)
Emacs Lisp
A dialect of the Lisp programming language used by the GNU Emacs and XEmacs text editors
 (message "Arch is the best!")
Emojicode
A delimiter-less, object oriented, imperative, high-level, hybrid language with emojis as fix points and methods.
🏁 🍇 😀 🔤Arch is the best!🔤❗️🍉
Elixir
A dynamic, functional language designed for building scalable and maintainable applications
IO.puts "Arch is the best!"
Erlang
A concurrent, garbage-collected programming language and runtime system.
-module(arch).-export([is_the_best/0]). is_the_best() -> io:fwrite("Arch is the best!\n").
Or using message passing between processes
 -module(arch). -export([ultimate_question/0,the_answer/0]). the_answer() -> receive {Client,who_is_the_best} -> Client! {self(),"Arch is the best!"}; {Client,_} -> Client! {self(),"Taco Taco Taco!"} end, the_answer(). ultimate_question() -> Pid = spawn(arch,the_answer,[]), Pid! {self(),who_is_the_best}, receive {Pid,Response} -> io:format("~s~n",[Response]) end.
F#
A strongly-typed, functional-first programming language for writing simple code to solve complex problems.
printfn "Arch is the best!"
Factor
High-level stack-based language.
"Arch is the best" print
FIM++
A wordy, imperative, dynamically-typed, and interpreted language that can use Java classes.
Dear Princess Celestia: Letter About Arch Linux.Today I learned: I wrote "Arch is the best!".Your faithful student, Twilight Sparkle
Fish
The user-friendly command line shell.
 function arch_is_the_best --on-event fish_prompt echo -ne "\e[94mArch is the best!\e[0m" end
Forth
Stack-based language.
." Arch is the best" cr -- kiss way
Fortran95
program arch print *,"Arch is the best!"end program arch
Gallina
The specification language of Coq, an interactive theorem prover.
Require Import String.Open Scope string_scope.Compute ("Arch is the best!").
Genie
A new programming language, that allows for a more modern programming style while being able to effortlessly create and use GObjects natively.
init print "Arch is the best"
Gjs
A Javascript binding for GNOME. It's mainly based on Spidermonkey javascript engine and the GObject introspection framework.
#!/usr/bin/env gjsprint ('Arch is the best');
Gleam
A fast, friendly, and functional language for building type-safe, scalable systems.
import gleam/iopub fn main() { io.println("Arch is the best!")}
Go
A language created by Google that's a love child between C, C++ and Python.
package mainimport "fmt"func main() {fmt.Println("Arch is the best!")}
Groovy
An agile and dynamic language for the Java Virtual Machine.
println 'Arch is the best!' 
Guile
GNU Ubiquitous Intelligent Language for Extensions. A portable, embeddable Scheme implementation.
#!/usr/local/bin/guile -s!#(display "Arch is the best!")(newline)
Hare
A systems programming language designed to be simple, stable, and robust.
use fmt;export fn main() void = { fmt::println("Arch is the best!")!;};
Haskell
The language where IO is easy and unproblematic.
main = putStrLn "Arch is the best!"
Haxe
An object oriented language based off actionscript that has a flavor of functionality
package;class Main { public static function main() { Sys.println("Arch is the best!"); }}
Hexagony
Hexagony is a two-dimensional esoteric programming language on a hexagonal grid.
 A; r; c < l i n u x >; b; e; s \ 2 3 *; e; h; h; * 3 2; i;; G N U @; < / ; t; * 3 3 / ; t; 2 < / s; * 3 /
HolyC
A fun recreational programming language created by Terry A. Davis, used to build TempleOS.
"Arch is the best!\n";
HTML
A markup language used to create and define web pages and their content.
<!DOCTYPE html><html lang='en'> <head> <title>Arch is the best!</title> </head> <body> 

Arch is the best!

</body></html>
Idris
A general purpose pure functional programming language with dependent types. Haskell, but crazier.
module Mainmain: IO ()main = putStrLn "Arch is the best!"
initcpio
initial ramdisk environment

hook

#/bin/bashrun_hook() { echo "Arch is the best"}

install

install() { inst_hook "$moddir/arch_is_the_best" "$hookdir/arch_is_the_best"}build() { add_runscript}
INTERCAL
"Designed very early one May morning in 1972 by two hackers who are still trying to live it down."
PLEASE NOTE THAT THIS WAS MADE FOR C-INTERCAL DO ,10 <- #18 DO ,10SUB#1 <- #126 DO ,10SUB#2 <- #52 DO ,10SUB#3 <- #136PLEASE DO ,10SUB#4 <- #176 DO ,10SUB#5 <- #18 DO ,10SUB#6 <- #110 DO ,10SUB#7 <- #200PLEASE DO ,10SUB#8 <- #202 DO ,10SUB#9 <- #214 DO ,10SUB#10 <- #24 DO ,10SUB#11 <- #112PLEASE DO ,10SUB#12 <- #162 DO ,10SUB#13 <- #190 DO ,10SUB#14 <- #160PLEASE DO ,10SUB#15 <- #216 DO ,10SUB#16 <- #160 DO ,10SUB#17 <- #170PLEASE DO ,10SUB#18 <- #52 DO READ OUT ,10 DO GIVE UP

Also a much larger ASCII-transcoding version.

(Non-portable C-INTERCAL I/O had to be used, since INTERCAL-72 does not allow arbitrary characters.)

Io
A pure object-oriented programming language inspired by Smalltalk, Self, Lua, Lisp, Act1, and NewtonScript.
"Arch is the best!" println
Java
An extremely portable language, this will run on pretty much anything, it might even run on your toaster!
public class ArchIsTheBest { public static void main(String[] args) { System.out.println("Arch is the best!"); }}
JavaScript
Also known as ECMAScript, a prototype-based object-oriented scripting language.
console.log('Arch is the best!');
JavaScript (in a web browser)
alert('Arch is the best!');
Julia
A fresh approach to numerical computing.
println("Arch is the best!")
jq
Command-line JSON processor
seq 1 100 | jq '"Arch is the best!"'
Kochanowski
Polish programming language based on JavaScript.
Drukuj("Arch is the best!").
Kotlin
JetBrains' attempt to get world domination.
fun main() { println("Arch is the best!")}
LaTeX
A typesetting framework and ecosystem implemented on top of TeX (ironically, more famous than TeX). "The" framework for typesetting mathematical equations and diagrams.
\documentclass{standalone}\begin{document} Arch is the best!\end{document}
LilyPond
A powerful music engraving program with an intuitive LaTeX-like input language.
\version "2.12.3"\include "english.ly"\header { title = "Arch is the best!" }\score{ << \relative c' { c4 e g c \bar "||" } \addlyrics { Arch is the best! } >>}
LOLCODE
Why not?
HAICAN HAS STDIO?VISIBLE "ARCH IS TEH PWNZ LOL!"KTHXBYE
LTac
The tactic language of Coq, an interactive theorem prover. (Inside of a trivial proof.)
Goal True. idtac "Arch is the best!". trivial. Qed.
Lua
A lightweight, extensible programming language.
print "Arch is the best!"
Malbolge
A language created to make programming as hard as possible.
bCBA@?>=<;:9876543210/.-,+*)('&%$#"!~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9y16543210/.-,+*)('&}C#"!~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLK-CgGFEDCBA@?>=<;:98x6543210/.-,+*)('&%$#"!~}|u;yxwpun4rqpRhmf,jihgIe^$ba`_^]\[ZYXQVUTMqQPONMFjJI+AeEDC%A:^>=<|:981U54t21*/.-&Jk)('&}C#"!aw={z\xwvun4lqpi/mlkjiKaf_%p
Matlab
A proprietary programming language developed by MathWorks.
disp('Arch is the best!');
Monicelli
Monicelli is an esoterical programming language based on the so-called "supercazzole" from the movie Amici Miei, a masterpiece of the Italian comedy.
Lei ha clacsonato voglio antani, Mascetti come se fosse 0 voglio carattere, Mascetti stuzzica carattere come se fosse brematurata la supercazzola scrivi con antani o scherziamo? carattere a posterdati antani come se fosse antani più 1 e brematura anche, se antani minore o uguale di 16 carattere come se fosse 13 carattere a posterdati carattere come se fosse 10 carattere a posterdativaffanzum!blinda la supercazzola Mascetti scrivi con ingresso Mascetti o scherziamo? voglio spazio, Mascetti come se fosse 1 con scappellamento a sinistra per 5 voglio esci, Mascetti che cos'è l'ingresso? 0: esci come se fosse 65 o magari 1: esci come se fosse 114 o magari 2: esci come se fosse ingresso per 49 più 1 o magari 3: esci come se fosse ingresso per 34 più 2 o magari 4: esci come se fosse spazio o magari 5: esci come se fosse ingresso per 21 o magari 6: esci come se fosse 115 o magari 7: esci come se fosse spazio o magari 8: esci come se fosse 116 o magari 9: esci come se fosse 104 o magari 10: esci come se fosse ingresso per 10 più 1 o magari 11: esci come se fosse spazio o magari 12: esci come se fosse 66 o magari 13: esci come se fosse 101 o magari 14: esci come se fosse ingresso per 8 più 3 o magari 15: esci come se fosse ingresso per 7 più ingresso meno 4 o tarapia tapioco: esci come se fosse spazio più 1 e velocità di esecuzionevaffanzum esci!
Morpho
Morpho is a multi-paradigm programming language that supports procedural, object-oriented and functional programming.
writeln("Arch is the best!");
Myrddin
A system programming language which aims for control and simplicity, featuring strong type checking, generics, type inference, closures, and traits.
/* mbld -b aitb aitb.myr */use stdconst main = { std.put("Arch is the best!\n")}
NASM / Yasm (i686)
Notice that the string is in the .text section, which feels superior.
;nasm -f elf32 arch.asm;ld -o arch arch.o;./archsection .textglobal _start_start: mov edx,len mov ecx,msg mov ebx,1 mov eax,4 int 0x80 xor ebx,ebx mov eax,1 int 0x80msg: db "Arch is the best!",10len equ $-msg
NASM / Yasm (x86_64)
Featuring AMD's sexy new instruction, syscall.
;nasm -f elf64 arch.asm;ld -o arch arch.o;./archsection .textglobal _starts: db 'Arch is the best!',0ahl equ $-s_start: mov rax,1 mov rdi,1 mov rsi,s mov rdx,l syscall mov rax,60 xor rdi,rdi syscall
Nim
Portable lightweight programming language.
echo "Arch is the best!"
node.js
a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications, using an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.
console.log('Arch is the best!');
node.js (http server)
A node.js program to beam the info that 'Arch is the best!' using HTTP
require('http').createServer((req,res) => {res.writeHead(200, {'Content-Type': 'text/plain'});res.end('Arch is the best!');}).listen(80);
Objective-C
A reflective, object-oriented programming language that adds Smalltalk-style messaging to the C programming language.
NSLog(@"Arch is the best!");
OCaml
The main implementation of the Caml programming language.
print_endline "Arch is the best!"
Octave
High-level interpreted language, primarily intended for numerical computations.
printf("Arch is the best!\n")
Ook!
brainf*ck, translated to Orangutan.
Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook. Ook. Ook! Ook? Ook. Ook? Ook! Ook? Ook! Ook! Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook! Ook? Ook. Ook! Ook! Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook! Ook? Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook? Ook! Ook! Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook? Ook! Ook? Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook! Ook! Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook? Ook! Ook? Ook. Ook! Ook. Ook. Ook? Ook. Ook? Ook. Ook. Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook? Ook. Ook? Ook. Ook! Ook. Ook. Ook? Ook. Ook? Ook. Ook. Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook? Ook. Ook? Ook. Ook! Ook. Ook. Ook? Ook. Ook? Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook. Ook! Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook! Ook. Ook! Ook? Ook! Ook! Ook? Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook.
Pascal
An influential imperative and procedural programming language.
program ArchIsTheBest;begin writeln('Arch is the best!');end.
PDF
A language used for talking to printers.
%PDF-1.11 0 obj<< /Type /Catalog/Pages 2 0 R>>endobj2 0 obj<< /Type /Pages/Kids [3 0 R]/Count 1/MediaBox [0 0 595 842]>>endobj3 0 obj<< /Type /Page/Parent 2 0 R/Resources<< /Font<< /F1<< /Type /Font/Subtype /Type1/BaseFont /Times-Roman>>>>>>/Contents 4 0 R>>endobj4 0 obj<< /Length 48 >>streamBT/F1 72 Tf55 460 Td(Arch is the best!) TjETendstreamendobjxref0 50000000000 65535 f 0000000016 00000 n 0000000066 00000 n 0000000148 00000 n 0000000303 00000 n trailer<< /Root 1 0 R/Size 5>>startxref402%%EOF
Perl
A high-level, general-purpose, interpreted, dynamic programming language.
#!/usr/bin/env perlprint "Arch is the best!\n";
Perl 6
The latest member of the Perl family.
#!/usr/bin/env perl6say 'Arch is the best!';
PHP
A general-purpose scripting language.
#!/usr/bin/env php<?php echo "Arch is the best!\n"?>
Pixilang
Make me pixels.
print("Arch is the best!",0,0,#1897D1)frame
PL/1
A procedural, imperative programming language by IBM.
ArchIsBest: proc options (main); put skip list("Arch is the best!");end ArchIsBest;
Pony
An object-oriented, actor-model, capabilities-secure, high performance programming language.
actor Main new create(env: Env) => env.out.print("Arch is the best!")
Portable GNU assembler
as -o arch.o arch.s && ld -o arch -O0 arch.o
 .section .dataarchIsBest: .ascii "Arch is the best!\n"archIsBest_len: .long . - archIsBest .section .text .globl _start_start: xorl %ebx, %ebx movl $4, %eax xorl %ebx, %ebx incl %ebx leal archIsBest, %ecx movl archIsBest_len, %edx int $0x80 xorl %eax, %eax incl %eax xorl %ebx, %ebx int $0x80
Porth
Stack-based like Forth but in python.
include "std.porth"proc main in "Arch is the best!" putsend
Portugol
Also known as Structural Portuguese, Portugol is a family of programming languages based on the portuguese language.
inicio escrever "Arco é o melhor!"fim
PostScript
An older language used for talking to printers.
%!PS/monospace 60 selectfont10 420 moveto(Arch is the best!) showshowpage
Powershell
A task-based command-line shell and scripting language built on .NET.
Write-Output "Arch is the best!"
Processing
An open source programming language and IDE built for the electronic arts and visual design.
println("Arch is the best!");
Prolog
A general purpose logic programming language associated with artificial intelligence and computational linguistics.
format('Arch is the best~n',[]).
Python
A general-purpose high-level programming language.
print('Arch is the best!')
q (kdb+)
A programming language for array processing used as the query language for kdb+.
show "Arch is the best!"
QBASIC
An interpreter for a variant of the BASIC programming language which is based on QuickBASIC.
PRINT "Arch is the best!"
QML
A superset of JavaScript used to build GUIs in a declarative fashion. Part of the Qt framework.
import QtQuick.Controls 2.15Label{ text: "Arch is the best!" font.pixelSize: 22}
R
A language for statistical computing (and much more!).
archIsBest <- function() { cat("Arch is the best!\n") }archIsBest()
Racket
A general purpose, multi-paradigm programming language in the Lisp-Scheme family.
#lang racket(let ([str "Arch is the best!\n"]) (write-string str) (values))
Ruby
A dynamic, reflective, general purpose object-oriented programming language.
#!/usr/bin/ruby -wputs 'Arch is the best!'
Rust
Rust is a systems programming language that runs blazingly fast, prevents almost all crashes, and eliminates data races.
fn main() { println!("Arch is the best!");}
Salt
Salt is an automation framework
 salt '*' event.fire '{"data":"Arch Is the best!"}' 'arch/best'
Scala
A multi paradigm language that runs on the JVM.
 object ArchIsBest extends App { println("Arch is the best!") }
Scratch
A block based programming language made by MIT.

Link to scratchblocks where you can see what it would look like as actual scratch code

when green flag clickedsay [Arch is the best!]
Scheme
A dialect of Lisp.
(display "Arch is the best!\n")
Seed
A library and interpreter, dynamically bridging the WebKit JavaScriptCore engine, with the GNOME platform.
#!/usr/bin/env seedprint ('Arch is the best');
Shakespeare Programming Language
Designed to "make a language with beautiful source code [...]"
Arch is the Best.Arthur, a young man who is the best.Isabella, a likewise young woman who be.The Ghost, an undead who is the article.Beatrice, a young woman who is an adjective. Act I: Setting of the Variables. Scene I: Setting of Isabella and Arthur.[Enter Arthur and Isabella]Arthur: You are as dirty as the square of the sum of a rotten smelly foul devil and a vile lie! You are as bold as the sum of yourself and an evil hog!Isabella: Thou art as big as the square of a cute fair sweet flower! You are as proud as the sum of thyself and a cow.[Exit Arthur] Scene II: Setting of The Ghost.[Enter The Ghost]Isabella: You art as loving as myself. Thou are as huge as the sum of yourself and twice a red old hair. You are as cowardly as the sum of yourself and a fat goat![Exit Isabella] Scene III: Setting of Beatrice.[Enter Beatrice]The Ghost: Thou are as good as the sum of Isabella and a mighty fine rich noble King.[Exeunt The Ghost and Beatrice] Act II: Printing Arch is the Best. Scene I: Arch.[Enter Arthur and Beatrice]Beatrice: Speak thy mind! You art as peaceful as the quotient between thyself and the clearest Lord.Arthur: Speak your mind![Exeunt Arthur and Beatrice][Enter Isabella and The Ghost]The Ghost: Thou are as normal as the sum of thyself and a town. Speak thy mind!Isabella: Speak your mind![Exit Isabella][Enter Arthur]The Ghost: Speak thy mind![Exit Arthur] Scene II: is.[Enter Beatrice]Beatrice: Thou are as old as the sum of yourself and a nose. Speak your mind!The Ghost: You art as pretty as the sum of thyself and a face. Speak your mind.[Exit The Ghost][Enter Arthur]Beatrice: Speak thy mind. Scene III: the.Arthur: You are as blue as the sum of yourself and a hamster. Speak thy mind![Exit Arthur][Enter The Ghost]Beatrice: You are as prompt as the sum of thyself and a lie! Speak your mind.[Exit Beatrice][Enter Isabella]The Ghost: You art as happy as the sum of thyself and a large moon. Speak thy mind![Exit The Ghost][Enter Arthur]Isabella: Speak thy mind.[Exit Arthur] Scene IV: Best.[Enter Beatrice]Beatrice: Thou are as blue as the sum of the sum of a curse and thyself and a bad codpiece. Speak your mind! You art as lovely as the sum of the sum of the happiness and yourself and a blossoming flower. Speak thy mind.Isabella: You are as healthy as the sum of yourself and a plague! Speak thy mind. Thou art as huge as the sum of thyself and a hero. Speak your mind![Exit Beatrice][Enter Arthur]Isabella: You art as green as the sum of thyself and a mother. Speak your mind.[Exeunt]
Shoes
A Ruby version using Shoes for a GUI.
Shoes.app :width => 135, :height => 30 do para "Arch is the Best!"end
Smalltalk
Smalltalk is an object-oriented, dynamically typed, reflective programming language.
Transcript show: 'Arch is the best!'.
Solidity
Object-oriented programming language for Ethereum smart contracts.
pragma solidity ^0.6.0;contract ArchIsTheBest { function archIsTheBest() external pure returns (string memory) { return "Arch is the best!"; }}
SQL
Structured Query Language, the query language for relational databases
SELECT 'Arch is the best!';SELECT 'Arch is the best!' from dual; -- for Oracle DB
Standard ML
A general-purpose, modular, functional programming language with compile-time type checking and type inference.
print "Arch is the best!\n"
Swift
A general-purpose, multi-paradigm, compiled programming language developed by Apple Inc.
print("Arch is the best!")
Tcl/Tk
A scripting language that is commonly used for rapid prototyping, scripted applications, GUIs and testing.
#!/usr/bin/env tclshputs "Arch is the best!"
TeX
A typesetting language aimed at scientific publishing. Famous for giving the ability to describe complicated equations in a plain text format. The basis for the more famous LaTeX.
Arch is the best!\bye
TrumpScript
A scripting language based on President Trump's words.
say it with me, "Arch is the best!";america is great.
UEFI
An extensible firmware framework
#include <Uefi.h>EFI_STATUS EFIAPIArchIsTheBest ( IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable ){ SystemTable -> ConOut-> OutputString(SystemTable->ConOut, L"Arch is the best!\n"); return EFI_SUCCESS;}
V
Simple, fast, safe, compiled language for developing maintainable software.
fn main() { println('Arch is the best!')}
Vala
Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C.
void main(string[] args) {stdout.printf("\nArch is the best!\n\n");}
var'aq
A warrior's programming language
"Arch maj law' Hoch maj puS!" cha'
Verilog
A hardware description language, standardized as IEEE 1364
module top; initial $display("Arch is the best!");endmodule
VHDL
VHSIC Hardware Description Language
use std.textio.all;entity top isend top;architecture behaviour of top is begin process begin write (output, String'("Arch is the best!")); wait; end process;end behaviour;
Vim script
A scripting language for the Vim text editor.
echo "Arch is the best!"
Visual Basic
A third-generation event-driven programming language and integrated development environment (IDE) from Microsoft for its Component Object Model (COM) programming model.
Module Arch Sub Main() MsgBox("Arch is the best!") End SubEnd Module
wenyan-lang
A programming language for the ancient Chinese.
吾有一言。曰「「阿祺,盡善矣。」」。書之。
Whenever
Whenever is a programming language which has no sense of urgency. It does things whenever it feels like it, not in any sequence specified by the programmer.
42 print("Arch is the best!");
Whitespace
A language where all non-whitespace characters are comments.

This language does not work very well in the wiki, so here's the code.

Wiring (Arduino)
Built on Processing, the open source programming language developed at the Massachusetts Institute of Technology.
void setup(){ Serial.begin(9600);}void loop(){ Serial.print("Arch is the best!");}
Wolfram
Proprietary programming language developed by Wolfram Inc which emphasizes symbolic computation, functional programming, and rule-based programming.
Print["Arch is the best"]
X11
X11 is an architecture independent system for display of graphical user interfaces.

cc -lX11 arch.c

#include <stdio.h>#include <stdlib.h>#include <string.h>#include <X11/Xlib.h>int main(){ Display *d; Window w; XEvent e; int s; if (!(d = XOpenDisplay(NULL))) { fprintf(stderr, "Couldn't open display, but Arch is the best!\n"); exit(1); } s = DefaultScreen(d); w = XCreateSimpleWindow(d, RootWindow(d,s), 0, 0, 110, 20, 0, 0, WhitePixel(d,s)); XSelectInput(d, w, ExposureMask | KeyPressMask); XMapWindow(d,w); while (1) { XNextEvent(d, &e); if (e.type == Expose) { XDrawString(d, w, DefaultGC(d, s), 5, 15, "Arch is the best!", 17); } } XCloseDisplay(d); return 0;}
Z3
A theorem prover from Microsoft Research
(define-const arch String "Arch is the best")(simplify (str.++ arch))
Zig
A general-purpose programming language and toolchain for maintaining robust, optimal, and reusable software. Intends to deprecate C.
const std = @import("std");pub fn main() !void { std.debug.warn("Arch is the best!\n", .{});}
Zimbu
A fast, easy to learn, and JS-like programming language.
FUNC Main() int IO.write("Arch is the best!") RETURN 0}
Zsh
A UNIX command interpreter (shell) closely resembling ksh, but includes many enhancements.
#!/bin/zsh -fsetopt extendedglobprint -- $(echoti setaf 2) ${$(<<<${${${(@j::)${(@s:_:)${:-What_Linux_is_the_best?}}}/* (#b)([A-Z]i)/Arch $match[1]}} tr '?' '!')} $terminfo[sgr0]
Arch is the best - ArchWiki (2024)

References

Top Articles
Welcome to Service Credit Union - Service Federal Credit Union
Checking Accounts - Service Federal Credit Union
Primepoint Business Access
Daily Journal Obituary Kankakee
Indiana Immediate Care.webpay.md
Craigslist Free Stuff Phoenix: The Ultimate Guide to Finding Free Treasures - Radio Okapi
Gisèle Pélicot: Mazan, el pequeño pueblo francés que vive con horror el caso de la esposa drogada por su marido durante años para que la violaran decenas de desconocidos - BBC News Mundo
Los niños regresan al pueblo de Las Ruedas de Ocón después de 15 años: “La alegría ha vuelto a las calles”
Aaa Saugus Ma Appointment
War Thunder M60
Challenger Halo Rs3
Pinckney Michigan Pros And Cons | Living in Pinckney Michigan
Best Pawn Build
Schwäbische Alb im Frühling: Ausflug zur Streuobstblüte am Fuße der Alb
City Of Durham Recycling Schedule
Lornruk Treasure
Filmyzilla 2021 - Download Bollywood, Hollywood, Hindi Dubbed Movies
Petsmart 86Th Street Nyc
Netatmo -Weerstation []
Netatmo führt ein neues Smart -Home -Mark Grand Majin vor
Abq Pets Craigslist
Pedro Almodóvar hace historia y logra el León de Oro en Venecia con ‘La habitación de al lado’
Afbic
Number of Marriott Luxury Collection locations in the USA in 2024 | ScrapeHero
Paystubportal Leggett
Can I do the same workout every day and see results?
Craigslist Free Stuff Columbus Ga
What Does 585 gold Mean? Everything you Need to Know
Campaign Homecoming Queen Posters
Sodium Carbonate Sds Fisher
Susu_Jpg Deepfake
LIVE UPDATES: Most Barrow County schools to resume on Tuesday, counseling services available
Angela Aguilar Fapello
Hang Em High Deer Processing
122 White Pill
Sr73 Catalina View North Lane 11
Omniplex Cinema Dublin - Rathmines | Cinema Listings
Loneliness and Social Isolation Factors Under the Prolonged COVID-19 Pandemic in Japan: 2-Year Longitudinal Study
Edgar Zazueta Cazares
Griselda The Forest Diplomacy
Chris Provost Daughter Addie
Andrews Auto Repair Kenosha Reviews
Cube Combination Wiki Roblox
Busted Newspaper Randall County
Sensual Massage Chattanooga
POE Lethal Pride Calculator - POE Timeless Jewel Calculator
Omaha Steaks Apple Tart Air Fryer
A Man Called Otto Showtimes Near Palm Desert
a short measure for routine outcome mon…
Joint PhD position: Health Policies for the Implementation of a self management & monitoring app in routine perinatal care
Pollen Count Spring Hill Fl
Myvetstoreonline.pharmacy
Pizza Quattro Stagioni - Rezept | EDEKA
Inside Backpage.com’s Vicious Battle With the Feds
Omega Pizza-Roast Beef -Seafood Middleton Menu
Sems Broward County
(541) 787-3087
Lavonne's Alterations
Daily Record Morristown Nj Obituaries
Top 4 Mexican food in Rancho Cordova, California, United States
Modelo Julinha Forum
your file-storage solution – TXST Information Technology Blog
Quizizz Bot Spammer
Events | #PAGetaway
Jermaine Patricia Watson
Terraria Creative Mode Mod
Johnson Williams Funeral Home Obituaries Newbern Tn
Gilbert Town Council candidates share their priorities - Daily Independent
Noaa Marine Forecast Florida By Zone
Emiddio Botta Obituary
Krm Kollel Supermarket Specials
DoubleList Review: Is It the Best Personals Alternative?
Elemental Showtimes Near Century Orleans 18
Wedq Tv Schedule Today
سناب خديجه اليافعي
Mileage To Walmart
Directions To 401 East Chestnut Street Louisville Kentucky
Walmart Borax Aisle
Simyo Auto Sales Vehicles
64 Bit Tmodloader
The Shoppes At Zion Directory
Nc Maxpreps
Living 2022 Showtimes Near Landmark Plaza Frontenac
BucketBall - The Ultimate Outdoor Pong Game
Craigslist Lakeville Ma
Paper Rejection: Common Reasons | Elsevier Language Services
Babykleidung ❤️ tolle Mode für Babys | Takko Fashion
These Are the Top 1,000 Baby Girl Names of 2023
Heb 5 Nkjv
Devotion Showtimes Near Xscape Theatres Blankenbaker 16
Roblox Arcane Odyssey Wiki
30 X de beste pizza in Amsterdam per wijk voor jou op een rij!
mohave co domestic gigs - craigslist
mohave co community - craigslist
Norville Breast Center Burlington
کون گنده برزیلی
Soldier Field Section 435
Bridgestone Tire Dealer Near Me
Rubrankings Austin
Dragon Ball Super Devolution Unblocked
Latest Posts
Article information

Author: Delena Feil

Last Updated:

Views: 6416

Rating: 4.4 / 5 (65 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Delena Feil

Birthday: 1998-08-29

Address: 747 Lubowitz Run, Sidmouth, HI 90646-5543

Phone: +99513241752844

Job: Design Supervisor

Hobby: Digital arts, Lacemaking, Air sports, Running, Scouting, Shooting, Puzzles

Introduction: My name is Delena Feil, I am a clean, splendid, calm, fancy, jolly, bright, faithful person who loves writing and wants to share my knowledge and understanding with you.