Skip to content

Instantly share code, notes, and snippets.

@andrewrk
Created February 15, 2016 03:27
Show Gist options
  • Select an option

  • Save andrewrk/73742bf4b8ed795c85ce to your computer and use it in GitHub Desktop.

Select an option

Save andrewrk/73742bf4b8ed795c85ce to your computer and use it in GitHub Desktop.
origin of the zig programming language name. https://github.com/andrewrk/zig/
import string
import random
vowels = "aoeuiy"
def m():
c1 = vowels[random.randint(0,len(vowels)-1)]
c2 = string.ascii_lowercase[random.randint(0,len(string.ascii_lowercase)-1)]
c3 = string.ascii_lowercase[random.randint(0,len(string.ascii_lowercase)-1)]
print('z' + c1 + c2 + c3)
m()
m()
m()
m()
m()
m()
m()
m()
m()
m()
m()
m()
m()
m()
m()
m()
@crunchfrog
Copy link

Neat! I thought 'Zig' was a reference to the 'All your base are belong to us' meme from "Zero Wing," the poorly translated Sega Genesis game.

"Take off every 'Zig!!' For great justice." lol

https://www.youtube.com/watch?v=n-3izJ-LRn4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment