Last active
December 20, 2016 07:35
-
-
Save BuonOmo/c15980952c12701db6606ace13d6b6ef to your computer and use it in GitHub Desktop.
My turtle hello world. https://www.w3.org/TR/turtle/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@base <https://www.wikidata.org/wiki/> | |
@prefix fb: <https://facebook.com/> | |
@prefix gh: <https://github.com/> | |
# Friend Of A Friend | |
@prefix foaf: <http://xmlns.com/foaf/0.1/> | |
_:me foaf:firstname "Ulysse"^^string ; # could be integer or else | |
a <Q188784> ; # superhero class | |
<Property:P2013> fb:another.dev ; # facebook-id property | |
foaf:weblog gh:buonomo . | |
[] foaf:knows _:me. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment