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
# Types Examples

This folder groups examples focused on type-system behavior and typing-related constructs.

## Structure

- `rr/`: examples `rr_0.rddl` to `rr_3.rddl`
- `sv/`: examples `sv_0.rddl` to `sv_3.rddl`

## Purpose

Use these files to verify:

- primitive and user-defined type usage,
- compatibility and assignment checks,
- parser stability for type-centric model variations.

## How To Run

From the repository root:

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

To run the full integration suite:

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