Advertisement
Tyler_Elric

Untitled

Dec 17th, 2015
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include "nlp.hpp"
  2. #include <iostream>
  3.  
  4. int main(const int argc,char** argv) {
  5. NaturalLanguage::Sentence sentence("hello mortal this is life");
  6. for(auto it : sentence) {
  7. std::cout << it << std::endl;
  8. }
  9. return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement