vala: use “squiggly” heredocs.

This commit is contained in:
ilovezfs 2018-02-15 08:11:48 -08:00
parent fa6fa4d41f
commit 4f3e315427

View file

@ -26,7 +26,7 @@ class Vala < Formula
test do
test_string = "Hello Homebrew\n"
path = testpath/"hello.vala"
path.write <<-EOS
path.write <<~EOS
void main () {
print ("#{test_string}");
}