| Entry |
smariot |
5.000 |
#!/usr/bin/env lua
-- Smariot's horrible abuse of sine waves and ansi escape codes.
-- Note: Run this on a proper terminal emulator. You'll get garbage otherwise.
... |
| Entry |
Nevcairiel |
5.000 |
local BF={
array={[0]=0},
cpos=0,
--source="",
... |
| Entry |
mikk |
4.000 |
local wordlist={
"hello",
"world"
}
... |
| Entry |
THUNDER_CHILD |
4.000 |
Print ("Hello World, Goodbye Cruel Womb", "Boy Was I Wrong")
|
| Entry |
Phatrik |
4.000 |
-- IMMA FIRIN' MY LAZAH!!!
local f = CreateFrame("Frame", nil, UIParent)
... |
| Entry |
Torhal |
4.000 |
local str_vals = {
[1] = "\72", [2] = "\101", [3] = "\108",
[4] = "\108", [5] = "\111", [6] = "\44",
[7] = "\32", [8] = "\119", [9] = "\111",
... |
| Entry |
Aezay |
4.000 |
-- overcomplicated yeah, but what's fun about print("Hello World!")?
local function out(...)
print(string.format(string.rep("%s",select("#",...)),...));
end
... |
| Entry |
Adirelle |
4.000 |
print(tostring(("Hryyb jbeyq !"):gsub("([a-z])", function(m) return string.char(97+((string.byte(m)-97)+13)%26) end)))
|
| Entry |
wobin |
4.000 |
print("sh\236 ji\232 n\237n h\224o")
|
| Entry |
kraftman |
4.000 |
print(string.char(72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100))
|
| Entry |
ethancentaurai |
4.000 |
HelloWorld = LibStub("AceAddon-3.0"):NewAddon("Hello World!", "AceConsole-3.0")
assert(HelloWorld, "Needs more cowbell")
... |
| Entry |
durcyn |
4.000 |
print("\72\101\108\108\111\44 \87\111\114\108\100\33")
|
| Entry |
p3lim |
4.000 |
-- globalized!
return string.format('%s %s!', string.gsub(VOICEMACRO_12_Dw_1, '.', ','), string.lower(CHANNEL_CATEGORY_WORLD))
|
| Entry |
sylvanaar |
3.000 |
|
|
| Entry |
AesirRising |
3.000 |
|
|
| Entry |
Kaelten |
3.000 |
|
|
| Entry |
Jamash |
3.000 |
print("What's all this, then?")
|
| Entry |
kagaro |
3.000 |
|
|
| Entry |
funkydude |
2.333 |
|
|
| Entry |
Brodrick |
2.000 |
hello = {"H","e","l","l","o"," ","W","o","r","l","d"}
text = ""
for k,v in ipairs(hello) do
text = text .. v
... |