Skip to content

Instantly share code, notes, and snippets.

@dacr
Last active May 25, 2024 08:39
Show Gist options
  • Save dacr/1507829b5ea593e6a80edef72242d8d7 to your computer and use it in GitHub Desktop.
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
public class hello {
public static void main(String[] args) {
var message = "hello world";
System.out.println(message);
}
}
// ---------------------
//> using scala "3.4.2"
// ---------------------
println("Hello world from scala")
echo "Hello world from sh"
## 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