HolyC icon
HolyC icon

HolyC

 3 likes

HolyC is very similar to regular C, so it's a very simple but powerful language. It was used to make all of TempleOS, so it definitely works to make programs.

HolyC screenshot 1

License model

  • FreeOpen Source

Application type

Platforms

  • Linux
  • Self-Hosted
4.5 / 5 Avg rating (2)
3 likes
1comment
0 news articles

Features

Suggest and vote on features

Properties

  1.  Lightweight

Features

  1.  Portable
  2.  Support for scripting
  3.  Command line interface

HolyC News & Activities

Highlights All activities

Recent activities

Show all activities

HolyC information

  • Developed by

    Terry A. Davis
  • Licensing

    Open Source (BSD-2-Clause) and Free product.
  • Written in

  • Rating

    Average rating of 4.5
  • Alternatives

    57 alternatives listed
  • Supported Languages

    • English

AlternativeTo Categories

DevelopmentOS & Utilities

GitHub repository

  •  473 Stars
  •  25 Forks
  •  13 Open Issues
  •   Updated Mar 16, 2025 
View on GitHub

Our users have written 1 comments and reviews about HolyC, and it has gotten 3 likes

HolyC was added to AlternativeTo by Bit m0 on Jun 22, 2023 and this page was last updated Aug 25, 2024.

Comments and Reviews

   
 Post comment/review
Guest
  
Top positive commentOct 9, 2023

True and honest programming language

0

What is HolyC?

HolyC, as the name would imply, is a C-like programming language with a number of key differences and improvements. Like C, it’s whitespace independent and compiles to assembly.

The most important difference is that HolyC uses "Just in Time" compilation, meaning you don't compile the code into a binary and run that (think a .exe file on windows), you just run the code directly from the file. Many interpreted languages like Python and Lua are like this, and some of these have JIT versions like PyPy and LuaJIT. But having a whole OS* like this is super awesome, you can just change a file and reboot, and you've changed the OS! Even in OSs like Linux or BSD where the source code is freely available, you have to download the source code and rebuild everything to change the OS itself, it's not nearly as friendly to hobbyists

In addition to this excellent reply, this JIT “Just in Time” allows for so much versatility and simplicity. It’s like less middlemen’s interruptions.

Also HolyC has a lot of syntactic sugar. Aka different ways to write the same things. That’s basically like having a dialect in human languages.Similarly to Python and other modern languages, functions can have variable argument counts, here specified with (...) in the function definition. The function body may then access its arguments by utilizing the built-in argc and argv variables

Finally, HolyC does not have a required Main() function. Expressions outside of functions are simply evaluated from top to bottom in source. This also allows the programming language to act like a shell, and in-fact is the shell of TempleOS icon TempleOS.

Functions are where you start to see some of the more drastic differences. For starters, functions that are invoked without arguments (or without overriding any default arguments) may be syntactically shortened to just the function name followed by a semicolon.

-In HolyC, you can Free() a null pointer (this is also true in C). -The stack does not grow because HolyC does not utilize virtual memory. -There is no continue keyword in the language. Instead, Terry urges programmers to use goto’s instead. -There is no #define capability. Terry’s explanation for this is that he’s just “not a fan”. -The typedef keyword is replaced with class. -#include does not support <> for importing standard libraries. All #include statements must use "". -There is no type checking what-so-ever. -try {}, catch {}, and throw are supported, however throw only returns up to an 8-byte char argument, which may be accessed in a catch {} as Fs->except_ch

Official Links