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  Docker Monitoring Tutorial – How To monitor Docker With Telegraf And InfluxDB

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  It Is Not YOU, It Is Your Code

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
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
View Post
  • Tech

IBM and Pasqal Plan to Expand Quantum-Centric Supercomputing Initiative

  • November 21, 2024
Black Friday Gifts
View Post
  • Tech

Black Friday. How to Choose the Best Gifts for Yourself and Others, Plus Our Top Recommendations.

  • November 16, 2024
zedreviews-Apple-iPhone-16-Pro-finish-lineup-240909
View Post
  • Featured
  • Gears
  • Tech
  • Technology
  • Tools

Apple debuts iPhone 16 Pro and iPhone 16 Pro Max

  • September 10, 2024
zedreviews-Apple-iPhone-16-Apple-Intelligence-240909
View Post
  • Featured
  • Gears
  • Tech
  • Technology

Apple introduces iPhone 16 and iPhone 16 Plus

  • September 10, 2024

Stay Connected!
LATEST
  • Send SMS texts with Amazon’s SNS simple notification service
    • July 1, 2025
  • Camping 2
    The Summer Adventures : Camping Essentials
    • June 27, 2025
  • Host a static website on AWS with Amazon S3 and Route 53
    • June 27, 2025
  • Prioritize security from the edge to the cloud
    • June 25, 2025
  • 6 edge monitoring best practices in the cloud
    • June 25, 2025
  • Genome 6
    AlphaGenome: AI for better understanding the genome
    • June 25, 2025
  • 7
    Pure Accelerate 2025: All the news and updates live from Las Vegas
    • June 18, 2025
  • 8
    ‘This was a very purposeful strategy’: Pure Storage unveils Enterprise Data Cloud in bid to unify data storage, management
    • June 18, 2025
  • What is cloud bursting?
    • June 18, 2025
  • 10
    There’s a ‘cloud reset’ underway, and VMware Cloud Foundation 9.0 is a chance for Broadcom to pounce on it
    • June 17, 2025
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
  • Oracle adds xAI Grok models to OCI
    • June 17, 2025
  • What is confidential computing?
    • June 17, 2025
  • Fine-tune your storage-as-a-service approach
    • June 16, 2025
  • 4
    Advanced audio dialog and generation with Gemini 2.5
    • June 15, 2025
  • Google Cloud, Cloudflare struck by widespread outages
    • June 12, 2025
  • /
  • Technology
  • Tools
  • About
  • Contact Us

Input your search keywords and press Enter.