stak_configuration/
lib.rs

1//! Stak Scheme configurations.
2
3#![no_std]
4
5/// A default heap size.
6// TODO Decrease this. 😭
7pub const DEFAULT_HEAP_SIZE: usize = 1 << 22;