hush 0.1.3

Hush is a unix shell scripting language based on the Lua programming language
1
2
3
4
5
6
7
8
let size = 1024 * 1024 # 1 MB

let result = ${
	head -c $size /dev/zero;
	head -c $size /dev/zero
}

std.assert(std.len(result.stdout) == (size * 2))