Skip to content

Commit

Permalink
realese early and often
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Oct 3, 2021
1 parent 51e8dfc commit 5871dd8
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 5 deletions.
1 change: 1 addition & 0 deletions examples/scripts/test0.ecma
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

_log.info("Helloe World");
_log.info(_id);

1;
1 change: 1 addition & 0 deletions examples/scripts/test0.groovy
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
println("hello world");
println(_id);
return true;
8 changes: 8 additions & 0 deletions examples/scripts/test0.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

puts "Helloe World\u000asomeThing"

puts( $_id)
puts( $_H.toString())


return 1;
17 changes: 17 additions & 0 deletions examples/templates/test.ejs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- this
is
a
comment
-->
<%-- comment - -- --% --%>

<html>
<%= _id %>
<pre><%
_sout.print("Helloe World\n");
%></pre>
<div attr="${_id}" />
</html>
17 changes: 17 additions & 0 deletions examples/templates/test.ejx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- this
is
a
comment
-->
<%-- comment - -- --% --%>

<html>
<%= _id %>
<pre><%
_sout.print("Helloe World\u000a");
%></pre>
<div attr="${_id}" />
</html>
17 changes: 17 additions & 0 deletions examples/templates/test.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- this
is
a
comment
-->
<%-- comment - -- --% --%>
<html>
<%= $_id %>
<pre><%
puts 'Helloe World\u000a'; puts $_id
%></pre>
<div attr="#{$_id}" />
</html>
5 changes: 0 additions & 5 deletions examples/templates/test0.ejs

This file was deleted.

0 comments on commit 5871dd8

Please sign in to comment.