#Java Shell Java Shell is a simple command line shell that provides a scripting interface for playing around with java objects, using command line type arguments.
##Introduction
load java.lang.Integer 2
toString <= This command returns 2
sum 1 3 <= This command returns 4
##How to run this script
- Clone the repository
git clone https://github.com/UltimatePea/JavaShell.git
- Go to the source folder
cd JavaShell-xxx/src
- Compile the source
javac *.java
- Run with java command
- To run the interactive shell
java JavaShell
- To run JavaShell script
java JavaShell <filename>
##Tutorial
- Please visit Hello World Guide for an introduction.
- Please visit our wiki page for a complete guide.