Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.
/ Blossom Public archive

Blossom is a compiled programming language written in C

License

Notifications You must be signed in to change notification settings

crowepj/Blossom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

94 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blossom

Blossom is a compiled programming language written in C. It is partially inspired by ADA. Currently it is still in development (Very limited functionality), an example of what factorial might look like when finished:

use "std/io";

func factorial(var number : int) -> int
{
  if (number > 0) 
  {
    ret factorial(number - 1) * number;
  }
  else
  {
    ret 1;
  }
}

func main() 
{
  var ex := factorial(4);
  io::print(ex);
}

About

Blossom is a compiled programming language written in C

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages