DEV Community

Splot Dev
Splot Dev

Posted on

Backtick - A Concise Programming Language

Hi there! I made Backtick - it's a very concise programming language written in Python.

I made it because I wanted to make a programming language that you can use, but is very unique. Also, I wanted to be able to use it in future projects.

To install Backtick, run this in your terminal:

pip install backtick
Enter fullscreen mode Exit fullscreen mode

It's got a simple syntax:

command/arg/arg/arg
Enter fullscreen mode Exit fullscreen mode

It has three data types:

> # strings
< # numbers
\ # variables
Enter fullscreen mode Exit fullscreen mode

An example would be:

+\v>Hello, >World!
Enter fullscreen mode Exit fullscreen mode

This would set the variable "v" to "Hello, " and "World!" put together.

You can find all the commands and other detail here, and you can find the main page here.

Thanks!

Top comments (0)