[ create a new paste ] login | about

ericP

Name: Eric Prud'hommeaux
Email:
Site/Blog: http://www.w3.org/People/Eric/
Location: Cambridge, MA
Default language: C++
Favorite languages:
About:

Saved pastes by ericP:

C++, pasted on Apr 11:
1
2
3
4
5
#include <iostream>

int main (void) {
    std::cout << "code 1";
    return 0;
...
view (6 lines, 1 line of output)
Perl, pasted on Apr 11:
1
2
3
4
5
= Many Named Graphs =
{ <work1G> prov:source <...worldcat> . <expression1G> prov:source <...elsewhere> .
  <expression1G> :absorbs_from <work1G> . <manifestation1G> :absorbs_from <expression1G> . <item1G> :absorbs_from <manifestation1G> }
<work1G>          { <work1>          :has_title "Moby-Dick, or, the Whale" ; :has_as_subject "Whaling Ships -- Fiction" }
<expression1G>    { <expression1>    :has_language "English" ; :has_extent "213711 words" ; :expression_of <work1> }
...
view (11 lines)
Perl, pasted on Apr 11:
1
2
3
4
5
= One RDF Graph =
<work1>          :has_title "Moby-Dick, or, the Whale" ;           :has_as_subject "Whaling Ships -- Fiction" .
<expression1>    :has_language "English" ;                         :has_extent "213711 words" ;                 :expression_of <work1> .
<manifestation1> :has_edition_issue "First Edition" ;              :has_pub_place "New York NY" ;               :manifestation_of <expression1> .
<item1>          :has_OAI_ID "http://hdl.handle.net/10150/16470" ; :has_condition "yellowing at page edges" ;   a <manifestation1> .
...
view (18 lines)