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

esoteric-programming-language

Here are 305 public repositories matching this topic...

rickroll-lang

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

  • Updated Mar 20, 2022
  • Python
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

Improve this page

Add a description, image, and links to the esoteric-programming-language topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the esoteric-programming-language topic, visit your repo's landing page and select "manage topics."

Learn more