Skip to content

Instantly share code, notes, and snippets.

@dacr
Last active February 14, 2022 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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/e53b4b3e0d70206fc681ac88ea2c4cc8fb6b629b
public class hello {
public static void main(String[] args) {
var message = "hello world";
System.out.println(message);
}
}
// ---------------------
//> using scala "3.1.1"
// ---------------------
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