Skip to content

Instantly share code, notes, and snippets.

View semmons99's full-sized avatar

Shane Emmons semmons99

View GitHub Profile
@semmons99
semmons99 / rlsp.rb
Created November 8, 2009 23:20 — forked from h0rs3r4dish/rlsp.rb
#!/usr/bin/ruby
RLSP_VERSION = "1.4.1"
class Lambda
attr_accessor :args, :body
def initialize(args=[],body="")
@args = (args.class == Array) ? args : [args]
@body = body
end