Arch 是最好的!

出自 Arch Linux 中文维基

Arch is the best 項目是一個非常複雜的和精緻的,自我提升和令人興奮的項目(雖然或許有點過度工程),該項目給出了 Arch 的優越性的證明。

歷史[編輯 | 編輯原始碼]

這個有遠見的項目最初是由 Arch 社區的長期成員 lucke 在 2008 年 4 月設計的,它是一個簡單的 shell 腳本,提供了"Arch is the best"的無可辯駁的證明。它是通過一個論壇帖子向全世界宣佈的,從而啟發了其他人的思想,他們立即開始將它移植到多種不同的語言中,包括編程語言和口頭語言,以便地球上的每一個人都能充分欣賞和受益於這一革命性的發現。

代碼[編輯 | 編輯原始碼]

"Arch is the best"項目被移植到許多編程語言中。

1C:Enterprise 7.7/8/8.1/8.2
一種特定於過程域的編譯動態類型化編程語言,主要類似於 VisualBasic,在俄羅斯和其他獨聯體國家廣泛使用的"1C:Enterprise"產品中。
Предупреждение("Arch is the best!");
ABAP
高級業務應用程式設計語言。
REPORT zwhat_is_the_best.
WRITE 'Arch is the best'.
Ada
一種系統關鍵編程語言。
with Ada.Text_IO;
use Ada.Text_IO;
procedure ArchIsTheBest is
begin
   Put_Line("Arch is the best!");
end ArchIsTheBest;
APL
一種編程語言。
'Arch is the best!'
AppleScript
由 Apple Inc. 創建的一種腳本語言,自 System 7 起內置於 Classic Mac OS 中,並內置於所有 macOS 版本中。
display alert "Arch is the best!"
say "Indeed, Arch is the best."
ArnoldC
基於 Arnold Schwarzenegger 的一行程序設計語言。
IT'S SHOWTIME
TALK TO THE HAND "Arch is the best!"
YOU HAVE BEEN TERMINATED
ATS
一種使用依賴類型來提高程序可靠性的函數式編程語言。
implement main () = println! "Arch is the best!"
Awk
一種數據驅動的程序設計語言,用於處理基於文本的數據。
BEGIN {
   print "Arch is the best!"
}
BASIC
一種腳本語言,是 20 世紀 60 年代最常用的計算機編程語言之一,被認為是學生在使用 FORTRAN 等功能更強大的語言之前學習的第一步。
10 PRINT "Arch is the best!"
Batch
一種用於 Windows 的腳本語言,可用於自動執行任務或只是享受一些樂趣。
@echo off
echo Arch is the best!
pause
Befunge
被認為是第一種基於 ASCII 的二維通用通用語言(在某種意義上,"you could plausibly write Hunt the Wumpus in it")。
<v"Arch is the best!"0
 <,_@#:
BIRL
類似於 ArnoldC,但是對於 Bambam 的[1]
HORA DO SHOW
    CE QUER VER ESSA PORRA? ("Arch is the best!\n");
    BORA CUMPADE 0;
BIRL
Boo
針對 .NET 和 Mono 的穩定的面向對象的靜態類型編程語言,具有受 python 啟發的語法,並特別關注通過語言和編譯器可擴展性功能(例如宏和自定義編譯管道)進行元編程。
print "Arch is the best!"
Bourne shell
原始程序,應該與任何 shell 兼容。
#!/bin/sh
echo "Arch is the best!"
Bourne shell(備用)
方便將輸出傳遞到您喜愛的 IRC/email/IM 客戶端。任何 shell 都能用。
#!/bin/sh
yes Arch is the best!
Bourne shell(動態更新)
#!/bin/sh
w3m -dump "https://wiki.archlinux.org/index.php/Arch_is_the_best" | sed -n '/^Translations/,/^Encodings/p'
 #!/bin/bash
 curl -s "https://wiki.archlinux.org/index.php?title=Arch_is_the_best&action=raw" | sed -n '/==Translations==/,$p' | sed "s/^\(.*\)$/* \1:/;t;s/^[^=]/  &/"
brainfuck
語言名稱沒有解釋它嗎?
++>++++++>+++++<+[>[->+<]<->++++++++++<]>>.<[-]>[-<++>]
<----------------.---------------.+++++.<+++[-<++++++++++>]<.
>>+.++++++++++.<<.>>+.------------.---.<<.>>---.
+++.++++++++++++++.+.<<+.[-]++++++++++.
C
注意這個項目中使用的三個空格縮進,很像其他高級的語言使用的縮進。
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
   puts("Arch is the best!");
   return EXIT_SUCCESS;
}
C#
旨在成為一種簡單、現代、通用、面向對象的編程語言。
using System;
public class ArchIsTheBest
{
   static public void Main ()
   {
      Console.WriteLine ("Arch is the best!");
   }
}
C++
Arch == Linux++
#include <iostream>
#include <cstdlib>
int main ()
{
   std::cout << "Arch is the best!" << std::endl;
   return EXIT_SUCCESS;
}
COBOL
一種簡單、輕量級的編程語言。
    IDENTIFICATION DIVISION.
    PROGRAM-ID.  TheBest.

    PROCEDURE DIVISION.
        DISPLAY "Arch is the best!".
        STOP RUN.
CoffeeScript
一種可編譯為 JavaScript 的編程語言。
alert 'Arch is the best!'
Clojure
在 JVM 上運行的 Lisp 方言。
(def translations {"english" "Arch is the best!",
                   "german" "Arch ist das Beste!",
                   "australian" "Arch is fair dinkum, mate!",
                   "h4x0r" "arhc 51 7he be57!",
                   "spanish" "¡Arch es el mejor!"})

(defn read-choice []
  (println "\nAvailable languages: ")
  (doall (map #(println (key %)) translations))
  (print "Enter language or Ctrl-c: ") (flush)
  (translations (read-line) :badinput))

(defn arch-is-the-best []
  (loop [choice (read-choice)]
    (case choice
      :badinput (do (print "\nBad input!\n")
                    (recur (read-choice)))
      (do (print "\n" choice "\n")
          (recur (read-choice))))))
(def translations {"english" "Arch is the best!",
                   "german" "Arch ist das Beste!",
                   "australian" "Arch is fair dinkum, mate!",
                   "h4x0r" "arhc 51 7he be57!",
                   "spanish" "¡Arch es el mejor!"
                   "street" "Arch iz da shizzle ma nizzle"})
(while 1
  (println "\nPick a language:\n" (map #(key %) translations) "\n language: ")
  (println (translations (read-line) "Not a valid language")))
(prn "Arch is the best!")
Common Lisp
在 SBCL 上測試,可以隨意添加更多的翻譯。
#!/usr/bin/sbcl --script
(defparameter *best-list* '((English "Arch is the best!")
            (Chinese "Arch, 她出类拔萃!")
          (German "Arch ist das Beste!")
          (Greek "Το Arch είναι το καλύτερο!")
          (Latin "Arch optimum est!")
          (French "Arch est le meilleur!")))
(defun aitb ()
  (format t "Available languages: ~{~{~@(~a~)~*~}~^, ~}.~%" *best-list*)
  (loop for input = (progn (format t "~&Input the desired language, (or 'quit'): ~%")
                           (force-output)
                           (read-line))
     if (string-equal input "quit")
     do (loop-finish)
     else
     do (let ((language-def
               (assoc input *best-list*
                      :key (lambda (lang) (symbol-name lang))
                      :test #'string-equal)))
          (if language-def
              (format t "~&~A~%" (second language-def))
              (format t "~&Invalid language.~%"))))
  (format t "~&May the Arch be with you!~%"))
(aitb)
Common Lisp(備用)
應該在任何實現上運行(Clisp,Allegro,SBCL ...)
(princ "Arch is the best!")
Crystal
一種面向對象的類似 Ruby 的語言。
puts "Arch is the best!"
Crystal(通過 web 伺服器)
用於一次將消息分發給多個朋友。
# For giving the message to your friends
require "http/server"

server = HTTP::Server.new(80) do |context|
  context.response.content_type = "text/plain"
    context.response.print "Arch is the best!"
end

puts "Listening."
server.listen
csh
一個類似 C 的 shell.
#!/bin/csh
echo "Arch is the best!"
CSS
一種樣式表語言,主要用於設置網頁樣式。
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
一種 C 風格的語言。有後見之明,以及現代化的便利。
 import std.stdio : writeln;
 void main()
 {
     writeln("Arch is the best");
 }
Dart
谷歌的 JavaScript 殺手
 main(){
   print('Arch is the best');
 }
Dogescript
友好的 JavaScript
 console.loge with '                So Arch'
 console.loge with '     Much Good'
 console.loge with '                          Wow'
Ebuild
Gentoo 的構建腳本格式。
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!"
}
Emacs Lisp
GNU Emacs 和 XEmacs 文本編輯器使用的 Lisp 編程語言的方言
 (message "Arch is the best!")
Emojicode
一種無分隔符,面向對象,命令式,高級的混合語言,以表情符號作為固定點和方法。
🏁 🍇
    😀 🔤Arch is the best!🔤❗️
🍉
Elixir
一種動態的功能語言,旨在構建可擴展和可維護的應用程式
IO.puts "Arch is the best!"
Erlang
並發的,垃圾收集的編程語言和運行時系統。
-module(arch).
-export([is_the_best/0]).
   is_the_best() -> io:fwrite("Arch is the best!\n").
或在進程之間使用消息傳遞
 -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#
一種強類型,功能優先的編程語言,用於編寫簡單的代碼來解決複雜的問題。
printfn "Arch is the best!"
Factor
基於高級堆棧的語言。
"Arch is the best" print
FIM++
可以使用 Java 類的一種冗長,命令式,動態類型和解釋性語言。
Dear Princess Celestia: Letter About Arch Linux.
Today I learned:
    I wrote "Arch is the best!".
Your faithful student, Twilight Sparkle
Forth
基於堆棧的語言。
." Arch is the best" cr -- kiss way
Fortran95
program arch
   print *,"Arch is the best!"
end program arch
Genie
一種新的編程語言,它允許使用更現代的編程樣式,同時能夠毫不費力地本地創建和使用GObjects。
init
 print "Arch is the best"
Gjs
GNOME 的 Javascript 綁定。它主要基於 Spidermonkey javascript 引擎和 GObject 自省框架。
#!/usr/bin/env gjs
print ('Arch is the best');
Go
由 Google 創建的一種語言,它是 C,C++和 Python 之間的一個可愛的孩子。
package main

import "fmt"

func main() {
 fmt.Println("Arch is the best!")
}
Groovy
使用 Java 虛擬機的一種敏捷和動態語言。
println 'Arch is the best!' 
Haskell
IO 是一種簡單無問題的語言。
main = putStrLn "Arch is the best!"
HTML
一種用於創建和定義網頁及其內容的標記語言。
<!DOCTYPE html>
<html lang='en'>
   <head>
      <title>Arch is the best!</title>
   </head>
   <body>
       

Arch is the best!

</body> </html>
Idris
具有依賴類型的通用純函數式編程語言。Haskell,但更瘋狂。
module Main

main : IO ()
main = putStrLn "Arch is the best!"
Io
受 Smalltalk,Self,Lua,Lisp,Act1 和 NewtonScript 啟發的純面向對象編程語言。
"Arch is the best!" println
Java
這是一種非常便攜的語言,幾乎可以在任何東西上運行,甚至可以在您的烤麵包機上運行!
public class ArchIsTheBest {
   public static void main(String[] args) {
       System.out.println("Arch is the best!");
   }
}
JavaScript
也稱為 ECMAScript,這是一種基於原型的面向對象的腳本語言。
console.log('Arch is the best!');
JavaScript(在網絡瀏覽器中)
alert('Arch is the best!');
Julia
數值計算的新方法。
println("Arch is the best!")
Kotlin
JetBrains 試圖贏得世界統治。
fun main() {
   println("Arch is the best!")
}
LilyPond
功能強大的音樂雕刻程序,具有類似 LaTeX 的直觀輸入語言。
\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
為什麼不呢?
HAI
CAN HAS STDIO?
VISIBLE "ARCH IS TEH PWNZ LOL!"
KTHXBYE
Lua
一種輕量級,可擴展的編程語言。
print "Arch is the best!"
Malbolge
為使編程儘可能困難而創建的語言。
bCBA@?>=<;:9876543210/.-,+*)('&%$#"!~}|{zyxwvutsrqponmlkjihgfedcba`_^]
\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9y16543210/.-,+*)('&}C#"!~}|{zyxwvu
tsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLK-CgGFEDCBA@?>=<;:98x6543210/
.-,+*)('&%$#"!~}|u;yxwpun4rqpRhmf,jihgIe^$ba`_^]\[ZYXQVUTMqQPONMFjJI+A
eEDC%A:^>=<|:981U54t21*/.-&Jk)('&}C#"!aw={z\xwvun4lqpi/mlkjiKaf_%p
Matlab
MathWorks開發的專有編程語言。
disp('Arch is the best!');
Morpho
Morpho 是一種支持過程式、面向對象和函數式編程的多範式編程語言。
writeln("Arch is the best!");
Myrddin
一種旨在控制和簡化的系統編程語言,具有強大的類型檢查,泛型,類型推斷,閉包和特徵。
/* mbld -b aitb aitb.myr */
use std
const main = {
  std.put("Arch is the best!\n")
}
NASM / Yasm (i686)
請注意,該字符串位於 .text 部分中,感覺更好。
;nasm -f elf32 arch.asm
;ld -o arch arch.o
;./arch

section .text
global _start
_start:
mov edx,len
mov ecx,msg
mov ebx,1
mov eax,4
int 0x80
xor ebx,ebx
mov eax,1
int 0x80
msg: db "Arch is the best!",10
len equ $-msg
NASM / Yasm (x86_64)
採用了 AMD 的好用的新指令 syscall
;nasm -f elf64 arch.asm
;ld -o arch arch.o
;./arch

section .text
global _start
s:
    db 'Arch is the best!',0ah
l equ $-s
_start:
    mov rax,1
    mov rdi,1
    mov rsi,s
    mov rdx,l
    syscall
    mov rax,60
    xor rdi,rdi
    syscall
Nim
可移植的輕量級編程語言。
echo "Arch is the best!"
node.js
一個基於 Chrome 的 JavaScript 運行時構建的平台,可使用事件驅動的非阻塞 I/O 模型輕鬆構建快速,可擴展的網絡應用程式,從而使其輕巧高效,非常適合跨分佈式設備運行的數據密集型實時應用程式。
console.log('Arch is the best!');
node.js(http 伺服器)
一個可以發出"Arch is the best!"信息的 node.js 程序。使用 HTTP
require('http').createServer((req,res) => {res.writeHead(200, {'Content-Type': 'text/plain'});res.end('Arch is the best!');}).listen(80);
Objective-C
一種反射型,面向對象的編程語言,將 Smalltalk 樣式的消息傳遞添加到 C 編程語言中。
NSLog(@"Arch is the best!");
OCaml
Caml 編程語言的主要實現。
print_endline "Arch is the best!"
Octave
高級解釋語言,主要用於數值計算。
printf("Arch is the best!\n")
Ook!
將 brainfuck 翻譯成了猩猩的語言。
Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook. Ook. Ook! Ook? Ook. Ook? Ook! Ook? Ook! Ook! Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook! Ook? Ook. Ook! Ook! Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook! Ook? Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook? Ook! Ook! Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook? Ook! Ook? Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook! Ook! Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook? Ook! Ook? Ook. Ook! Ook. Ook. Ook? Ook. Ook? Ook. Ook. Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook? Ook. Ook? Ook. Ook! Ook. Ook. Ook? Ook. Ook? Ook. Ook. Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook? Ook. Ook? Ook. Ook! Ook. Ook. Ook? Ook. Ook? Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook. Ook! Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook! Ook. Ook! Ook? Ook! Ook! 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
一種有影響力的命令式和過程式編程語言。
program ArchIsTheBest;
begin
  writeln('Arch is the best!');
end.
Pepe
一種使您想大吼大叫的編程語言。在線運行[失效連結 2022-09-17 ⓘ]
# Arch
reeEeeeeeE reeEEEeeEe reeEEeeeEE REeEEeEeee Reee rEeeEeeeee reee

# is t
reeEEeEeeE RrEeEEEeeEE rEeEEEeEee reee

# he
Reee RrEeEEeeEeE rreEe rEEeerEEee reEe

# BEST!
reeEEeeeEe reee reeeEeeeeE
Perl
一種高級通用通用解釋型動態編程語言。
#!/usr/bin/env perl
print "Arch is the best!\n";
Perl 6
Perl 家族的最新成員。
#!/usr/bin/env perl6
say 'Arch is the best!';
PHP
通用腳本語言。
<?php
echo "Arch is the best!\n";
Pixilang
讓我像素化。
print("Arch is the best!",0,0,#1897D1)
frame
Pony
面向對象,參與者模型,功能安全的高性能編程語言。
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 .data
archIsBest:
   .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
PostScript
與打印機通話的語言。
%!PS
/monospace 60 selectfont
10 420 moveto
(Arch is the best!) show
showpage
Powershell
基於 .NET 的基於任務的命令行 shell 和腳本語言。
Write-Output "Arch is the best!"
Processing
專為電子藝術和視覺設計而構建的開源編程語言和 IDE。
println("Arch is the best!");
Prolog
與人工智能和計算語言學相關的通用邏輯編程語言。
format('Arch is the best~n',[]).
Python
一種通用的高級編程語言。
print('Arch is the best!')
QBASIC
基於 QuickBASIC 的 BASIC 編程語言變體的解釋器。
PRINT "Arch is the best!"
R
統計計算的語言(還有更多!)。
archIsBest <- function() { cat("Arch is the best!\n") }
archIsBest()
Racket
Lisp-Scheme 系列中的通用多範式編程語言。
#lang racket

(let ([str "Arch is the best!\n"])
    (write-string str)
    (values))

Ruby
一種動態的,反射性的,通用的面向對象的編程語言。
#!/usr/bin/ruby -w
puts 'Arch is the best!'
Rust
Rust 是一種系統編程語言,運行速度極快,幾乎可以防止所有崩潰,並消除了數據爭用。
fn main() {
    println!("Arch is the best!");
}
Salt
Salt 是自動化框架
 salt '*' event.fire '{"data":"Arch Is the best!"}' 'arch/best'
Scala
在 JVM 上運行的一種多範例語言。
 object ArchIsBest extends App {
     println("Arch is the best!")
 }
Scheme
Lisp 的方言。
(display "Arch is the best!\n")
Seed
一個庫和解釋器,通過 GNOME 平台動態地橋接 WebKit JavaScriptCore 引擎。
#!/usr/bin/env seed
print ('Arch is the best');
Shakespeare Programming Language
旨在"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
使用 Shoes 作為 GUI 的 Ruby 版本。
Shoes.app :width => 135, :height => 30 do
    para "Arch is the Best!"
end
Smalltalk
Smalltalk 是一種面向對象的動態類型的反射式編程語言。
Transcript show: 'Arch is the best!'.
Solidity
以太坊智能合約的面向對象編程語言。
pragma solidity ^0.6.0;

contract ArchIsTheBest {
  function archIsTheBest() external pure returns (string memory) {
    return "Arch is the best!";
  }
}
SQL
結構化查詢語言,關係數據庫的查詢語言
SELECT 'Arch is the best!';
SELECT 'Arch is the best!' from dual; -- for Oracle DB
Standard ML
一種具有編譯時類型檢查和類型推斷功能的通用,模塊化,功能性編程語言。
print "Arch is the best!\n"
Swift
Apple Inc. 開發的一種通用,多範式,已編譯的編程語言。
print("Arch is the best!")
Tcl/Tk
一種腳本語言,通常用於快速原型製作,腳本化應用程式,GUI 和測試。
#!/usr/bin/env tclsh
puts "Arch is the best!"
TrumpScript
一種基於特朗普總統話語的腳本語言。
say it with me, "Arch is the best!";
america is great.
UEFI
可擴展的固件框架
#include <Uefi.h>
EFI_STATUS EFIAPI
ArchIsTheBest (
              IN EFI_HANDLE        ImageHandle,
              IN EFI_SYSTEM_TABLE  *SystemTable
              )
{
   SystemTable -> ConOut-> OutputString(SystemTable->ConOut, L"Arch is the best!\n"); 
   return EFI_SUCCESS;
}
V
簡單,快速,安全,可編譯的語言,用於開發可維護的軟件。
fn main() {
        println('Arch is the best!')
}
Vala
Vala 是一種新的編程語言,旨在將現代編程語言功能帶給 GNOME 開發人員,而無需施加任何其他運行時要求,並且與使用 C 編寫的應用程式和庫相比,無需使用其他 ABI。
void main(string[] args) {
stdout.printf("\nArch is the best!\n\n");
}
var'aq
戰士的編程語言
"Arch is the best!" cha'
Verilog
一種硬件描述語言,標準化為 IEEE 1364
module top;
  initial $display("Arch is the best!");
endmodule
VHDL
VHSIC 硬件描述語言
use std.textio.all;

entity top is
end top;

architecture behaviour of top is begin
  process begin
    write (output, String'("Arch is the best!"));
    wait;
  end process;
end behaviour;
VimScript
Vim 文本編輯器的腳本語言。
echo "Arch is the best!"
Visual Basic
Microsoft 為其組件對象模型(COM)編程模型提供的第三代事件驅動編程語言和集成開發環境(IDE)。
Module Arch
  Sub Main()
      MsgBox("Arch is the best!")
  End Sub
End Module
wenyan-lang
古代漢語的編程語言。
吾有一言。曰「「阿祺,盡善矣。」」。書之。
Wiring(Arduino)
麻省理工學院開發的開源編程語言"處理"為基礎。
void setup()
{
   Serial.begin(9600);
}
void loop()
{
   Serial.print("Arch is the best!");
}
X11
X11 是獨立於體系結構的系統,用於顯示圖形用戶界面。

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
Microsoft Research 的定理證明器
(define-const arch String "Arch is the best")
(simplify (str.++ arch))
Zig
一種通用的編程語言和工具鏈,用於維護健壯,最佳和可重用的軟件。打算棄用 C。
const std = @import("std");

pub fn main() !void {
    std.debug.warn("Arch is the best!\n", .{});
}
Zimbu
一種快速,易學且類似於 JS 的編程語言。
FUNC Main() int
  IO.write("Arch is the best!")
  RETURN 0
}
Zsh
UNIX 命令解釋器(shell),與 ksh 極為相似,但包含許多增強功能。
#!/bin/zsh -f
setopt extendedglob
print -- $(tput setaf 2) ${$(<<<${${${(@j: :)${(@s:_:)${:-What_Linux_is_the_best?}}}/* (#b)([A-Z]i)/Arch $match[1]}} tr '?' '!')} $(tput sgr0)