0.1.0 • Published 3 years ago

@qupa/uniview v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Uniview-lang

View once immutability enabling the safeties of immutable code, while enjoying near procedural performance

The core goal of this language is to implement compile time determined memory managed applications without developers needing to consider memory management. No pointers, no life times, just code.

When any non-primative value is viewed it can no longer be used, this extends to structure attributes. However there is no concept of null or undefined being a value. Undefined is a compile time state and that's it.

fn main(): int {
	let person = Blank#[Person]();
	print(person.name); // name has now been consumed
	consume(person); // error cannot compose person due to undefined name
}

You can also find a few examples in test/pre-alpha/.

Compiler Arguments

ArgumentUse
-o {filename}The destination file name for the LLVM IR and binary output
-sThe compilation level to perform llvm, assembly
--executeExecutes the binary output after successful compilation
--versionPrints the version of the compiler
--verifyOnlyCompiles to LLVM, but does not store the results or compiles further
--compileOnlyCompiles to binary, but does not execute the result
--opt {num}Runs optimisation passes over the output (any number between 0-3 inclusive)
0.1.0

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago

0.0.0

3 years ago