From 3c667adc6548db6d14322dfcfd5792da3437ac85 Mon Sep 17 00:00:00 2001 From: Olof-Joachim Frahm Date: Thu, 27 Nov 2014 22:33:57 +0100 Subject: [PATCH] Unpublish lisp syntaxes post. --- lisp-syntaxes.post | 30 ------------------------------ lisp-syntaxes.post.unpublished | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 30 deletions(-) delete mode 100644 lisp-syntaxes.post create mode 100644 lisp-syntaxes.post.unpublished diff --git a/lisp-syntaxes.post b/lisp-syntaxes.post deleted file mode 100644 index df1fd80..0000000 --- a/lisp-syntaxes.post +++ /dev/null @@ -1,30 +0,0 @@ -;;;;; -title: Lisp syntaxes -tags: lisp -date: 2014-08-28 23:41:03 -format: md -;;;;; - -Apart from the standard reader syntax, some libraries provide syntax for a DSL -of their own or to easily create objects. - -# Strings - -`#"foo"#` to allow strings with unescaped quotation marks included. - -The following is similar to shell here documents and Perl syntax: - - #>END - This is a text ended byEND - -The resulting string will be `"This is a text ended by"`. - -# Regular expressions - -`#R""` is the DSL used by `CL-PPCRE` to construct regular expressions. - -# SQL - -`(query [select 'item :where [= [slot-value 'item 'id] 23]])` is the DSL for -`CL-SQL`. The resulting expressions are later converted to regular SQL -statements. diff --git a/lisp-syntaxes.post.unpublished b/lisp-syntaxes.post.unpublished new file mode 100644 index 0000000..df1fd80 --- /dev/null +++ b/lisp-syntaxes.post.unpublished @@ -0,0 +1,30 @@ +;;;;; +title: Lisp syntaxes +tags: lisp +date: 2014-08-28 23:41:03 +format: md +;;;;; + +Apart from the standard reader syntax, some libraries provide syntax for a DSL +of their own or to easily create objects. + +# Strings + +`#"foo"#` to allow strings with unescaped quotation marks included. + +The following is similar to shell here documents and Perl syntax: + + #>END + This is a text ended byEND + +The resulting string will be `"This is a text ended by"`. + +# Regular expressions + +`#R""` is the DSL used by `CL-PPCRE` to construct regular expressions. + +# SQL + +`(query [select 'item :where [= [slot-value 'item 'id] 23]])` is the DSL for +`CL-SQL`. The resulting expressions are later converted to regular SQL +statements. -- 1.7.10.4