This commit is contained in:
u202e 2018-12-11 22:12:00 +00:00 committed by GitHub
commit e0bdfc60de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

6
e.ant Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0"?>
<project name="e" default="e">
<target name="e">
<echo>e</echo>
</target>
</project>

3
e.make Normal file
View File

@ -0,0 +1,3 @@
.PHONY: e
e:
while [ true ] ; do echo -n e ; done ; true ;