First program
Create a source file such as main.klc:
public class Pong extend Game { public void Update() { if (Input.held(Key.Up)) { // update state } }}Validate or lint a source file with the CLI:
cargo run -p kalcite-cli -- check path/to/main.klccargo run -p kalcite-cli -- lint path/to/main.klcThe exact engine APIs appropriate to a game depend on the implemented backend; use the examples in the Kalcite source as the reference.