Skip to content

Instantly share code, notes, and snippets.

View skwerlman's full-sized avatar
🧙‍♂️
wizard emoji

skwerlman

🧙‍♂️
wizard emoji
View GitHub Profile
@skwerlman
skwerlman / install-haxe.sh
Last active August 31, 2016 02:22 — forked from jgranick/install-haxe.sh
Haxe Linux install script
#!/bin/sh
HAXE_VERSION=3.3.0-rc1
NEKO_VERSION=2.1.0
if [ `uname -m` = "armv7l" ]; then
HAXE_VERSION=3.1.3
local try = require "try"
try(
function()
error('oops')
end
):catch(
function(err)
print('caught error: ' .. err)
end