Skip to content
Snippets Groups Projects
Commit 83c80b22 authored by Keiko Katsuragawa's avatar Keiko Katsuragawa
Browse files

add readme for java examples

parent e94614a2
No related branches found
No related tags found
No related merge requests found
## Compiling and Running Java Demos
To make ("compile") an example, use the included makefile with
the name of the java file passed as a variable. For example, to make hello.java:
```bash
make NAME="hello"
```
Then, to run:
```bash
java hello
```
Or you can compile and run in one step:
```bash
make run NAME="hello"
```
You can also clean temporary `.class` files:
```bash
make clean
```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment