psk_std 0.1.0

Standard library for the piske programming langauge
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Standard library for piske.

#![warn(missing_docs)]

extern crate image as img;

mod image;
mod extrema;
pub mod stdlib;
mod environment;
pub use self::environment::*;
pub mod complex;

pub mod step_range;