Skip to content

Instantly share code, notes, and snippets.

View stivenroytman's full-sized avatar
😈
procrastinating

Stiven Roytman stivenroytman

😈
procrastinating
View GitHub Profile
@stivenroytman
stivenroytman / spongespek.jl
Created May 3, 2021 18:51
A custom Julia REPL mode that memes back at you in spongebob spek whatever you say.
using ReplMaker
function spongespek(phrase::String)
casecounter = 0
spek = ""
for letter in phrase
casecounter += 1
if casecounter % 2 == 1
spek *= uppercase(letter)
else