We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad42630 commit 9b750b4Copy full SHA for 9b750b4
.gitignore
@@ -0,0 +1,7 @@
1
+*.fpkg
2
+*.jar
3
+.GITHUB_TOKEN
4
+artifact/
5
+build/
6
+lib/
7
+crash_report_*.txt
LICENSE.md
flix.toml
@@ -0,0 +1,6 @@
+[package]
+name = "test-pkg-trust-java"
+description = "test"
+version = "0.1.0"
+flix = "0.65.0"
+authors = ["John Doe <[email protected]>"]
src/Main.flix
@@ -0,0 +1,8 @@
+mod TestPkgTrust {
+
+ import java.lang.System
+ pub def entry(): Unit \ IO = {
+ System.out.println("Hello from Java")
+ }
8
+}
0 commit comments