The Wayback Machine - http://web.archive.org/web/20220406172001/https://github.com/topics/esoteric-language
Skip to content
#

esoteric-language

An esoteric programming language, or "esolang", is a computer programming language

intended to entertain or confuse, to be a joke or to exlore new concepts.

Esolangs may be minimalistic or, conversely, bloated.

Often an esolang has features that made it harder to use on purpose.

Esolangs are mostly not designed for serious use, unlike mainstream languages.

Here are 489 public repositories matching this topic...

rickroll-lang

The Rick Roll programming language is a rickroll based, process oriented, dynamic, strong, esoteric programming language. All of the keywords/statements are from Rick Astley's lyrics. Discord server: https://discord.gg/yzZ3MfGZ8A

  • Updated Apr 5, 2022
  • Python
RodrigoDornelles
RodrigoDornelles commented Mar 24, 2022

It would be interesting to have a manual that looks for all the documentation in order, to be printed.

<div style="min-height:100vh" markdown="1">

<br/><br/>

# Complete Manual #

## 3BC LANGUAGE ##

<br/><br/>

![LOGO ><](/images/3bc-logo-large.png)

</div>

{% include_relative guide/tutorial-en-us.md %}
{% include_relative guide/cheatsheet.md %}
{% include_relative g
documentation good first issue
chunkybanana
chunkybanana commented Mar 20, 2022

Specifically:

  • Matrix exponentiation
    Repeated multiplication of the matrix with itself
  • Identity matrix of size n
    A matrix with 1s on the main diagonal and zeroes elsewhere
    E.g. for 3
[ [1, 0, 0],
  [0, 1, 0],
  [0, 0, 1] ]
  • Graph adjacency matrix
    Take a graph of the form [[1,3],[2,4],[3,4]] and create an adjacency matrix e.g. for this,
[ [0, 0, 1, 0],
enhancement good first issue difficulty: average element request