aster.cloud aster.cloud
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
aster.cloud aster.cloud
  • /
  • Platforms
    • Public Cloud
    • On-Premise
    • Hybrid Cloud
    • Data
  • Architecture
    • Design
    • Solutions
    • Enterprise
  • Engineering
    • Automation
    • Software Engineering
    • Project Management
    • DevOps
  • Programming
    • Learning
  • Tools
  • About
  • Programming
  • Tech

Create An App With This Arnold Schwarzenegger-Themed Programming Language

  • Ackley Wyndam
  • March 3, 2022
  • 3 minute read

Build your Java muscle while having some fun with ArnoldC, an open source programming language.

Have you ever wished programming were more like an action movie? If you answered yes, then I have the language for you.


Partner with aster.cloud
for your next big idea.
Let us know here.



From our partners:

CITI.IO :: Business. Institutions. Society. Global Political Economy.
CYBERPOGO.COM :: For the Arts, Sciences, and Technology.
DADAHACKS.COM :: Parenting For The Rest Of Us.
ZEDISTA.COM :: Entertainment. Sports. Culture. Escape.
TAKUMAKU.COM :: For The Hearth And Home.
ASTER.CLOUD :: From The Cloud And Beyond.
LIWAIWAI.COM :: Intelligence, Inside and Outside.
GLOBALCLOUDPLATFORMS.COM :: For The World's Computing Needs.
FIREGULAMAN.COM :: For The Fire In The Belly Of The Coder.
ASTERCASTER.COM :: Supra Astra. Beyond The Stars.
BARTDAY.COM :: Prosperity For Everyone.

While wandering the internet to find the most obscure and fun open source languages, I came across ArnoldC. ArnoldC is an imperative programming language where the basic keywords are replaced with quotes from various Arnold Schwarzenegger movies.

For this tutorial, I’ll be using a Debian-based operating system with Terminator and the Vim editor. While you follow this tutorial, I would highly recommend rewatching some older Schwarzenegger films just for fun!

Install ArnoldC

ArnoldC is hosted in GitHub. Before starting, I suggest creating a directory to hold your new project so it won’t get lost. Below are my commands to get ArnoldC on your computer.

$ mkdir arnoldc
$ cd arnoldc/
/arnoldc$ wget http://lhartikk.github.io/ArnoldC.jar
–2022-01-16 14:11:18—  http://lhartikk.github.io/ArnoldC.jar
Resolving lhartikk.github.io (lhartikk.github.io)… \
185.199.108.153, 185.199.109.153, 185.199.110.153, …
Connecting to lhartikk.github.io (lhartikk.github.io)\
|185.199.108.153|:80… connected.
HTTP request sent, awaiting response… 200 OK
Length: 12958233 (12M) [application/java-archive]
Saving to: ‘ArnoldC.jar’ArnoldC.jar                             100%

Short keyword overview

First, I’ll explain some of the keywords you’ll need to build an app. Keep in mind that all of these keywords need to be in all caps when writing your application.

 

Printing strings or variables: TALK TO THE HAND
Example: TALK TO THE HAND "hello there"

Creating a variable: GET TO THE CHOPPER
Example: GET TO THE CHOPPER var1

Setting the variable: HERE IS MY INVITATION
Example (in pattern format):

GET TO THE CHOPPER var1
HERE IS MY INVITATION value1

Once you’ve finished with the assigned variable, the next line is ENOUGH TALK.

False: I LIED
True: NO PROBLEMO
Return: I'LL BE BACK

These are some of my favorite keywords from the complete list, but you can always consult the ArnoldC wiki for more.

Read More  Inclusive Language And Its Future At Canonical

Hello world

I’ll start with a small “hello world” app to show the ArnoldC language in use.

First, use the echo command to output the string “hello world” into a hello file:

$echo -e “IT’S SHOWTIME\nTALK TO THE HAND \”hello world\
“
\nYOU HAVE BEEN TERMINATED” > hello.arnoldc

Next, use java -jar to create the app using ArnoldC: $java -jar ArnoldC.jar hello.arnoldc

Then use the java command to run the program: $java hello

Here’s the output:

hello world

If you followed these instructions, congratulations on your first under-3-minute app in a completely frivolous language.

Let’s count

In this next example, I’ll have my app count to 20. The odd patterning makes this program pretty interesting.

First, create the file using Vim so you can just start writing the app: arnoldc$ vi count.arnoldc

Create the begin main with IT'S SHOWTIME.

Next, set up the declared variable: HEY CHRISTMAS TREE isLessThan20

Then, set the initial value of the variable to true, making that required: YOU SET US UP @NO PROBLEMO

Repeat these steps with the variable n and make the first set value 0:

HEY CHRISTMAS TREE n
YOU SET US UP 0

From here, move into a while loop with the first variable: STICK AROUND isLessThan20

Assign the variable to look at: GET TO THE CHOPPER n

Then set the value to plus one:

HERE IS MY INVITATION n
GET UP 1

Moving on to ending the assigned variable: ENOUGH TALK

Print the number: TALK TO THE HAND n

Look at the assigned variable again, then set the variable to 20:

GET TO THE CHOPPER isLessThan20
HERE IS MY INVITATION 20

Check to see if the number is less than 20: LET OFF SOME STEAM BENNET n

Moving on to ending the assigned variable, end the while loop, then terminate the program:

ENOUGH TALK
CHILL
YOU HAVE BEEN TERMINATED

In the end, you should have this:

IT‘S SHOWTIME
HEY CHRISTMAS TREE isLessThan20
YOU SET US UP @NO PROBLEMO
HEY CHRISTMAS TREE n
YOU SET US UP 0
STICK AROUND isLessThan20
GET TO THE CHOPPER n
HERE IS MY INVITATION n
GET UP 1
ENOUGH TALK
TALK TO THE HAND n
GET TO THE CHOPPER isLessThan20
HERE IS MY INVITATION 20
LET OFF SOME STEAM BENNET n
ENOUGH TALK
CHILL
YOU HAVE BEEN TERMINATED

Now you just need to set the jar package up to run: /arnoldc$ java -jar ArnoldC.jar count.arnoldc

Then run your code:

/arnoldc$ java count
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

If you attempted this tutorial, congratulations again! You now have a small counter.

Read More  How To Deploy The Google Cloud Ops Agent With Ansible

Afterthoughts

This just-for-fun open source language is great for general hilarity, but it helps if you know a small amount of Java-based languages. I don’t, so it took a bit more time for me to figure out how to use the language. At least I learned something while having fun! I hope you enjoy experimenting with ArnoldC and making something that’s amusing to you.

This feature was originally appeared in OpenSource.


For enquiries, product placements, sponsorships, and collaborations, connect with us at [email protected]. We'd love to hear from you!

Our humans need coffee too! Your support is highly appreciated, thank you!

Ackley Wyndam

Related Topics
  • Arnold Schwarzenegger
  • Java
  • Learning
  • programer
  • Programming
  • Programming Language
You May Also Like
Smartphone hero image
View Post
  • Gears
  • Tech

Zed Approves | Smartphones for Every Budget Range

  • January 29, 2026
Early Black Friday Gears
View Post
  • Tech

Friday Deals – And It’s Not Even Black Friday Yet

  • November 13, 2025
aster-cloud-sms-pexels-tim-samuel-6697306
View Post
  • Programming
  • Software

Send SMS texts with Amazon’s SNS simple notification service

  • July 1, 2025
aster-cloud-website-pexels-goumbik-574069
View Post
  • Programming
  • Software

Host a static website on AWS with Amazon S3 and Route 53

  • June 27, 2025
Getting things done makes her feel amazing
View Post
  • Computing
  • Data
  • Featured
  • Learning
  • Tech
  • Technology

Nurturing Minds in the Digital Revolution

  • April 25, 2025
View Post
  • Tech

Deep dive into AI with Google Cloud’s global generative AI roadshow

  • February 18, 2025
Volvo Group: Confidently ahead at CES
View Post
  • Tech

Volvo Group: Confidently ahead at CES

  • January 8, 2025
zedreviews-ces-2025-social-meta
View Post
  • Featured
  • Gears
  • Tech
  • Technology

What Not to Miss at CES 2025

  • January 6, 2025

Stay Connected!
LATEST
  • 1
    IBM Study: One in Four Malicious Breaches are AI-Enabled, Costing Companies $6 Million on Average
    • July 29, 2026
  • 2
    Accelerating the frontiers of scientific discovery: Google’s $40M commitment to the Genesis Mission
    • July 26, 2026
  • 3
    3 Questions: Neural transparency and the future of AI design
    • July 17, 2026
  • 4
    Intel Invests €5 Billion to Expand Manufacturing in Europe
    • July 13, 2026
  • 5
    IBM and Red Hat Expand Lightwell with New Offerings to Build the Trust Infrastructure for AI-Era Open Source
    • July 8, 2026
  • 6
    When I Was Young
    • July 4, 2026
  • 7
    The Fastest AI Fried Chicken In The World
    • June 29, 2026
  • 8
    Zed Approves | How to Stay Cool in Extreme Heat
    • June 29, 2026
  • 9
    The AI investment surge hasn’t produced the expected results yet. That could change in 2026
    • June 26, 2026
  • 10
    Zed Approves | It’s Prime Day 2026! Time to Upgrade Your World Cup Viewing Setup and Beat the Heat
    • June 25, 2026
about
Hello World!

We are aster.cloud. We’re created by programmers for programmers.

Our site aims to provide guides, programming tips, reviews, and interesting materials for tech people and those who want to learn in general.

We would like to hear from you.

If you have any feedback, enquiries, or sponsorship request, kindly reach out to us at:

[email protected]
Most Popular
  • 1
    Zed Approves | The Best Prime Day PC Deals: Top Gaming Rigs, Workstations, and Everyday Laptops
    • June 24, 2026
  • neon-cart 2
    Zed Approves: How to Gear Up for GTA 6 This Amazon Prime Day (2026 Quick Guide)
    • June 22, 2026
  • zedreviews-valerion 3
    Father’s Day Outdoors – Build Dad the Ultimate Backyard Watch Party
    • June 20, 2026
  • zedreviews-fathers-day-50830 4
    Father’s Day Outdoors, Round Two – Gear for the Action, the Tailgate, and Beating the Heat
    • June 20, 2026
  • zedreviews-fathers-day-2147684744 5
    The Ultimate Father’s Day Gift Guide – Home Entertainment Upgrades Dad Actually Wants
    • June 20, 2026
  • /
  • Technology
  • Tools
  • About
  • Contact Us

Input your search keywords and press Enter.