li 0.0.1

Little Island is a fun game about building a civilisation on an isolated island
1
2
3
4
5
6
7
const VERSION: &str = "LittleIsland v0.0.1";

fn main()
{
	println!("{}\n", VERSION);
	println!("Welcome to Little Island, a fun game about building a civilisation on an isolated island!");
}