n3-writer-test-17.n3
来自「jena2.5.4推理机系统的一种最基本实现 HP实验室出品」· N3 代码 · 共 21 行
N3
21 行
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix a: <http://foo/a#> .
@prefix : <#> .
:test :comment "Complex DAML List: duplicate properties".
# This is the list ("1" "2" "3").
_:a1 rdf:first "1" .
_:a1 rdf:rest _:a2 .
_:a2 rdf:first "2" .
_:a2 rdf:rest _:a3 .
_:a3 rdf:first "3" .
_:a3 rdf:rest () .
# This adds a property to the middle element.
# Could pretty print the tail ("3")
_:a2 rdf:first "TWO" .
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?