Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tfpk/lifetimekata

An exploration of lifetimes in Rust.
https://github.com/tfpk/lifetimekata

lifetimes rust

Last synced: about 2 months ago
JSON representation

An exploration of lifetimes in Rust.

Awesome Lists containing this project

README

        

# LifetimeKata

Welcome to LifetimeKata, a set of exercises which you can use to improve your
understanding of lifetimes in Rust. While many tasks involve writing compiling
code, some will also involve creating specific errors.

You should complete the kata in order, as they increase in
difficulty, and depend on previous kata.

## Getting Started

Clone this repository:

``` sh
$ git clone https://www.github.com/tfpk/lifetimekata/
```

Most exercises are run in two steps:

``` sh
$ cargo build --package ex04
```

And then either:

``` sh
$ cargo test --package ex04
```

or:

``` sh
$ cargo run --package ex04
```

depending on whether it's a binary or a library.