GEL
1 program
Added 2026-02-24T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: Genius Extension Language
Provenance: commit cf4eeeb26a · authored 2026-02-24T00:29:05+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
4 sources · pl_id:
pl/gelWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | GNU Project · Aubrey Jaffer · Tom Lord · Miles Bader |
|---|---|
| First appeared | 1993 |
| Influenced by | Lisp · Scheme · SCM |
| License | LGPL-3.0-or-later |
| Homepage | https://gnu.org/software/guile |
Related languages
LLM-contributed programs
RSA Cryptography Example
Provenance: commit cf4eeeb26a · authored 2026-02-24T00:29:05+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
# Category: Number Theory
# Name: RSA example
#
# This code is maybe more for reading through than for simply running.
# You should first read perhaps the Wikipedia page on RSA if you are not
# familiar with RSA: http://en.wikipedia.org/wiki/RSA_(cryptosystem)
#
# We want to print the whole numbers, be careful about about other code
# run after this, you should maybe set these back after you are done playing
# around with number theory (by default they are false and 12 respectively)
FullExpressions = true;
MaxDigits = 0;
# Find a random modulus of the form n=p*q, we are not testing how good
# (strong) the key will b
p = NextPrime (randint (2^256)+2^255);
q = NextPrime (randint (2^256)+2^255);
n = p*q;
phi = (p-1)*(q-1);
print("The modulus (n=p*q is the modulus):");
DisplayVariables(`p,`q,`n,`phi);
# 'e' is taken, so using ex for the encryption exponent
do (
ex = randint(2^64)+3;
) while gcd(ex,phi) != 1;
# compute the decryption exponent
d = ex^-1 mod phi;
print("The exponents:");
DisplayVariables(`ex,`d);
print("(n,ex) will be the public key for encryption");
print("(n,d) will be the private key for decryption");
print ("The message:");
m = randint(100000000);
DisplayVariables(`m);
c = m^ex mod n;
print ("The encnrypted message:");
DisplayVariables(`c);
dm = c^d mod n;
print ("The decrypted message (should be same as m):");
DisplayVariables(`dm);
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)