Skip to content

Commit 9b750b4

Browse files
committed
feat: add flix project
1 parent ad42630 commit 9b750b4

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.fpkg
2+
*.jar
3+
.GITHUB_TOKEN
4+
artifact/
5+
build/
6+
lib/
7+
crash_report_*.txt

LICENSE.md

Whitespace-only changes.

flix.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[package]
2+
name = "test-pkg-trust-java"
3+
description = "test"
4+
version = "0.1.0"
5+
flix = "0.65.0"
6+
authors = ["John Doe <[email protected]>"]

src/Main.flix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
mod TestPkgTrust {
2+
3+
import java.lang.System
4+
5+
pub def entry(): Unit \ IO = {
6+
System.out.println("Hello from Java")
7+
}
8+
}

0 commit comments

Comments
 (0)