1.0.1 • Published 3 years ago

powerscript v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

PowerScript Programming Language

Usage

TODO

Examples

Hello world example:

import ("console");

console.println("hello world!");

# Prints "hello world!"

Fibonacci example:

import ("console");

function fibonacci(n) {
	if (n < 2){
		return 1;
	} else {
		return fibonacci(n-2) + fibonacci(n-1);
	}
}

console.println(fibonacci(7));

# Prints 21

Helpful resources

Links

1.0.1

3 years ago