Skip to content

Instantly share code, notes, and snippets.

@bmizerany
Created March 8, 2010 19:51
Show Gist options
  • Save bmizerany/325507 to your computer and use it in GitHub Desktop.
Save bmizerany/325507 to your computer and use it in GitHub Desktop.
[set, key, value],
[get, key],
[sort, parts]
set(Key, Value) ->
q(set, [Key, Value]).
get(Key) ->
q(get, [Key]).
sort(Parts) ->
q(sort, [Parts]).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment