Skip to content

Instantly share code, notes, and snippets.

View maplelinst's full-sized avatar

Terrence_Lin maplelinst

  • Shanghai, China
View GitHub Profile

2025-12-29

111

@maplelinst
maplelinst / HelloWorld.java
Created December 4, 2018 07:07
This is a demonstration of the ability of the Cacher Run Server (https://github.com/CacherApp/cacher-run-server) to execute different languages through your machine's shell. Save this snippet to your library, then click the "Run" tab next to each sni
// Java: Install via https://www.oracle.com/technetwork/java/javase/downloads/jdk11-downloads-5066655.html
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}