Last active
May 25, 2024 08:39
-
-
Save dacr/1507829b5ea593e6a80edef72242d8d7 to your computer and use it in GitHub Desktop.
testing1 multi-files cem / published by https://github.com/dacr/code-examples-manager #8c2d65e2-4838-4cbf-8130-1318fb7d0c2c/31b0cad90c9a7f329e540f141dc1b51b4c602167
This file contains hidden or 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
public class hello { | |
public static void main(String[] args) { | |
var message = "hello world"; | |
System.out.println(message); | |
} | |
} |
This file contains hidden or 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
// --------------------- | |
//> using scala "3.4.2" | |
// --------------------- | |
println("Hello world from scala") |
This file contains hidden or 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
echo "Hello world from sh" |
This file contains hidden or 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
## summary : testing1 multi-files cem | |
## keywords : cem, cemtest | |
## publish : snippet, gist | |
## authors : David Crosson | |
## license : CreativeCommons | |
## id : 8c2d65e2-4838-4cbf-8130-1318fb7d0c2c | |
## attachments : hello.sc, hello.sh, hello.java | |
## created-on : 2022-01-29T09:31:53+01:00 | |
## managed-by : https://github.com/dacr/code-examples-manager | |
## run-with : make | |
all: hello1 hello2 hello3 | |
hello1: | |
scala-cli hello.sc | |
hello2: | |
sh hello.sh | |
hello3: | |
scala-cli hello.java |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment