Skip to content

Instantly share code, notes, and snippets.

@hexgnu
Created November 10, 2014 16:25
Show Gist options
  • Select an option

  • Save hexgnu/71816c7c9e380486a38f to your computer and use it in GitHub Desktop.

Select an option

Save hexgnu/71816c7c9e380486a38f to your computer and use it in GitHub Desktop.
def sentiment(word)
if positive_words.include?(word)
:positive
else
:negative
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment