Skip to content

Instantly share code, notes, and snippets.

@emaldonado
emaldonado / js.nanorc
Created January 3, 2014 16:18 — forked from thejhh/js.nanorc
## JavaScript
##
syntax "JS" "\.js$" "\.sjs$"
# Reserved Keywords
color yellow "\b(instanceof|typeof|break|do|new|var|case|else|return|void|catch|finally|continue|for|switch|while|this|with|debugger|function|throw|default|if|try|delete|in)\b"
# Future Reserved Words
color brightblue "\b(class|enum|extends|super|import|const|export|implements|let|private|public|yield|static|interface|package|protected)\b"
@emaldonado
emaldonado / app.rb
Created March 13, 2014 18:11 — forked from vangberg/app.rb
require 'sinatra'
get '/' do
"Hello world"
end