Skip to content

Hassium Version 1.2.0

Compare
Choose a tag to compare
@JacobMisirian JacobMisirian released this 08 Oct 16:07
· 332 commits to master since this release

Added Tuples to Hassium!

tuple myTuple ("this", 4, 5); # Optionally myTuple "this", 4, 5;
func main () {
    println(myTuple.Item0);
}

Also added more methods to the char object.