12 lines
No EOL
306 B
Bash
Executable file
12 lines
No EOL
306 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# run all Cargo examples, as described here:
|
|
#
|
|
# Karol Kuczmarski. "Add examples to your Rust libraries"
|
|
# http://xion.io/post/code/rust-examples.html
|
|
#
|
|
|
|
cargo run --example irisawa-hexlet
|
|
cargo run --example three-spheres
|
|
cargo run --example point-on-sphere
|
|
cargo run --example kaleidocycle |