summaryrefslogtreecommitdiffstats
path: root/emacs.d/nxhtml/tests/in/heredoc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d/nxhtml/tests/in/heredoc.rb')
-rw-r--r--emacs.d/nxhtml/tests/in/heredoc.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs.d/nxhtml/tests/in/heredoc.rb b/emacs.d/nxhtml/tests/in/heredoc.rb
new file mode 100644
index 0000000..ab7b54f
--- /dev/null
+++ b/emacs.d/nxhtml/tests/in/heredoc.rb
@@ -0,0 +1,8 @@
+now = Time.now
+puts <<-EOF
+ It's #{now.hour} o'clock John, where are your kids?
+ EOF
+now = Time.now
+puts <<EOF
+ It's #{now.hour} o'clock John, where are your kids?
+EOF