From 7204a52e7cbcb6c29a0066efba4668e6fc9b746e Mon Sep 17 00:00:00 2001 From: neauoire <aliceffekt@gmail.com> Date: Tue, 7 Apr 2020 11:40:52 +0900 Subject: [PATCH] Added svg example --- examples/projects/svg.lisp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 examples/projects/svg.lisp diff --git a/examples/projects/svg.lisp b/examples/projects/svg.lisp new file mode 100644 index 0000000..b395951 --- /dev/null +++ b/examples/projects/svg.lisp @@ -0,0 +1,5 @@ +(def points + (add "0,100 " "50,25 " "50,75 " "100,0")) + +(print + (add "<?xml version='1.0' encoding='iso-8859-1'?><svg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve'><polyline points='" points "' /></svg>")) \ No newline at end of file