-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156 from yegor256/155
new syntax
- Loading branch information
Showing
149 changed files
with
2,728 additions
and
4,811 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
eo-archetype/src/main/resources/archetype-resources/src/main/eo/cli.eo
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
eo-archetype/src/main/resources/archetype-resources/src/main/eo/hello.eo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+alias stdout org.eolang.io.Stdout | ||
|
||
[] > hello | ||
[] > say | ||
stdout "Hello, world!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2016 eolang.org | ||
* Copyright (c) 2016-2020 Yegor Bugayenko | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -21,10 +21,21 @@ | |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
|
||
/** | ||
* XML eo objects. | ||
* @author Kirill ([email protected]) | ||
* @version $Id$ | ||
* Eo entry point. | ||
* | ||
* @since 0.1 | ||
*/ | ||
package org.eolang.compiler.xml; | ||
public final class App { | ||
|
||
/** | ||
* Java app entry point. | ||
* @param args Command line args | ||
* @throws Exception In case of failure | ||
*/ | ||
public static void main(final String... args) throws Exception { | ||
new hello().say().call(); | ||
} | ||
|
||
} |
77 changes: 0 additions & 77 deletions
77
eo-archetype/src/main/resources/archetype-resources/src/main/java/eo/App.java
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
eo-archetype/src/main/resources/archetype-resources/src/main/java/eo/package-info.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
gen/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.