Sign in
eclipse
/
epsilon
/
org.eclipse.epsilon
/
refs/heads/hhoyos/iEvl
/
.
/
examples
/
org.eclipse.epsilon.examples.xsdxml
/
note.eol
blob: bbe7bcb95765118140c5a7be64d821786949277c [
file
] [
log
] [
blame
]
var
note
=
NoteType
.
all
.
first
();
(
"From: "
+
note
.
from
).
println
();
(
"To: "
+
note
.
to
).
println
();
(
"Heading: "
+
note
.
heading
).
println
();
(
"Body: "
+
note
.
body
).
println
();
(
"Text: "
+
note
.
mixed
.
last
().
value
.
trim
()).
println
();