riddle-lang 0.2.0

RiDDLe is a language for the definition of timeline-based domains and problem definitions, designed to facilitate the integration with solvers and to increase modularity and reusability of domain models.
Documentation
# Core Examples

This folder contains the minimal RiDDLe examples used to exercise the core grammar and runtime behavior.

## Contents

- `example_00.rddl` to `example_13.rddl`: progressively richer scenarios for parsing and semantic checks.

## Purpose

Use these files to:

- validate parser coverage on essential syntax,
- debug changes in expression/statement handling,
- quickly reproduce regressions with small inputs.

## How To Run

From the repository root:

```bash
cargo test --test examples test_core_
```

To run all integration examples:

```bash
cargo test --test examples
```