Skip to content

blazingkin/blz-ospl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5010304 · Feb 25, 2021
Dec 30, 2019
May 7, 2019
Feb 25, 2021
Jan 31, 2018
Feb 25, 2021
Sep 2, 2020
Feb 25, 2021
Feb 25, 2021
Oct 28, 2018
Nov 8, 2017
May 5, 2019
Dec 18, 2018
May 6, 2019
May 5, 2019
Aug 18, 2018
Sep 3, 2018
Jan 3, 2018
Sep 24, 2018
Oct 28, 2018

Repository files navigation

The blazingkin open source programming language (blz-ospl)

Stable - Build Status

Nightly - Build Status

blz is an easy to use, fast, and portable scripting language implemented using the JVM.

The goal is to provide programmers with high levels of abstraction to increase developer velocity.

Getting Started

Directions for installing the language are available on the Docs Site

Example Code

Hello World

print("Hello World!")

Factorial

:main
	print("What number would you like the factorial of?")
	input = number_input()
	print(fact(input))
end

:fact(num)
	if num <= 1
		1	# The last line of a method is automatically returned
	else
		num * fact(num - 1)
	end
end

Constructors / Objects

:main
	# Make a new Ball and name it red_ball
	red_ball = Ball("red", 2)
	
	# Examine its properties
	print(red_ball.name())
	print(red_ball.volume())
	
end

# Constructors can take parameters (that automatically become properties)
constructor Ball(color, radius)
	
	# Objects can also have functions (closures)
	:volume
		return 4/3 * {pi} * (radius ** 3)
	end
	:name
		return "a " + color + " ball with radius " + radius
	end
	
end

See the Examples folder for more

Reference Material

Check out the Docs Site for details about the language and its standard library

Language Hompage

Check out the language homepage at blazingk.in/blz-ospl.

Building the Project

The project comes precompiled in a .jar file, so you should be able to use it immediately after cloning. However, if you are interested in contributing you may have to rebuild the project.

See this wiki page to see how to build the language.

Contact and License

For more information concerning this project, please email me at blazingkin [at] gmail [dot] com or visit my website

This work includes a Java BigMath library by Richard Mathar. It is in the org folder.

See here for the full license

Copyright © 2015-2018 Alex Gravenor under the GNU GPL V3 License