Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Commit

Permalink
- v0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kirbodevv committed Feb 13, 2022
1 parent 23af888 commit 89e32da
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "ModuleName",
"executable": "test"
"name": "hello-world",
"executable": "helloWorld"
}
8 changes: 8 additions & 0 deletions release/v0.3.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
MODULE({
"name": "hello-world",
"executable": "helloWorld"
});
//file src/src.js
function helloWorld() {
java.lang.System.out.println("Hello, World!");
}
2 changes: 1 addition & 1 deletion src/src.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
function test() {
function helloWorld() {
java.lang.System.out.println("Hello, World!");
}
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.2
v0.3

0 comments on commit 89e32da

Please sign in to comment.