valhallac

Compiler for set-theoretic programming language.
git clone git://git.knutsen.co/valhallac
Log | Files | Refs | README | LICENSE

build.rs (107B)


1
2
3
4
5
6
7
mod read_version;

fn main() -> Result<(), Box<dyn std::error::Error>> {
	read_version::out()?;

	Ok(())
}