CC_SMC

(★ 143)

State Machine Compiler for Clean Code video series.

File Explorer

  • .gitignore
  • build.xml
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

ant

View Details ▼

Apache Ant: build and manage Java-based projects.

ant

Build a project with default build file `build.xml`:

ant {{[-f|-buildfile]}} {{buildfile.xml}}

Build a project using build file other than `build.xml`:

ant {{[-p|-projecthelp]}}

Print information on possible targets for this project:

🔍

java

View Details ▼

Java application launcher.

java {{classname}}

Execute a Java `.class` file that contains a main method by using just the class name:

java -classpath {{path/to/classes1}}:{{path/to/classes2}}:. {{classname}}

Execute a Java program and use additional third-party or user-defined classes:

java -jar {{filename.jar}}

Execute a `.jar` program:

// repository documentation