A cool programming language :)
Go to file
2022-07-11 12:58:10 +02:00
.cache/clangd/index updates 2022-07-10 18:53:05 +02:00
core Precompiled Header :) 2022-06-16 15:56:10 +02:00
docs updates 2022-07-10 18:53:05 +02:00
editors/vscode/sapphirelang Initial commit (added Sapphire to source control) 2022-03-11 17:00:09 +01:00
examples new changes i said 2022-06-09 17:24:50 +02:00
external updates 2022-07-02 12:03:06 +02:00
src Finally, some real progress on the AST!! 2022-07-11 11:59:02 +02:00
tests we got a TESTING FRAMEWORK baby!! 2022-07-11 12:58:10 +02:00
.clang-format used clang-format :) 2022-06-14 16:29:51 +02:00
.gitignore Initial commit (added Sapphire to source control) 2022-03-11 17:00:09 +01:00
.gitmodules updates 2022-07-02 12:02:58 +02:00
build.sh convenient build script, we like that =D 2022-06-08 17:43:29 +02:00
CMakeLists.txt Working on it working on bare debian with install 2022-06-22 20:31:57 +02:00
Doxyfile changes :) 2022-07-02 11:49:51 +02:00
README.md llvm 2022-06-22 20:38:39 +02:00
sapphire.cpp disclaimer :) 2022-06-08 20:16:14 +02:00
test.py we got a TESTING FRAMEWORK baby!! 2022-07-11 12:58:10 +02:00

Sapphire

A modern, fast and reliable programming language. (WIP)

WARNING: Most features in this README (especially the About section) are planned for the future and not yet implemented.

About

Sapphire is a relatively high-level programming language, yet low-level when it needs to be. The language supports low-level memory manipulation using pointers, but pointer arithmetic is only allowed in unsafe contexts, for greater memory safety. Dynamic memory allocation is also a thing, though it is recommended not to use it directly, but instead make great use of smart pointers.

Sapphire is a compiled programming language, with static typing, although type inference is also supported. It also has a high-level standard library, which supports console/file I/O, operating system functions, advanced math operations, string manipulation, and many more.

Basic usage

"Hello world" in Sapphire:

const io from @'core/io';

let @main in {
	io.outln('Hello, World!');
}

or alternatively:

const { outln } from @'core/io';

let @main in {
	outln('Hello, World!');
}

Examples

FizzBuzz:

const io from @'core/io';
const { toString } from @'core/type_utils';

let @fizzBuzz(i32 i) in {
	String result = '';
	if(i % 3 == 0)
	{
		if(i % 5 == 0)
		{
			result = 'FizzBuzz';
		} else {
			result = 'Fizz';
		}
	} else {
		if(i % 5 == 0)
		{
			result = 'Buzz';
		} else {
			result = toString(i);
		}
	}
	io.outln(result);
}

let @main in {
	for(i32 i = 1; i <= 100; i++)
	{
		fizzBuzz(i);
	}
}

Quine:

const io from @'core/io';
String fmt = 'const io from @%ccore/io%c;%cString fmt = %c%s%c;%clet @main in {%c%cio.outf(fmt,39,39,10,39,fmt,39,10,10,9,10,10);%c}%c';
let @main in {
	io.outf(fmt,39,39,10,39,fmt,39,10,10,9,10,10);
}

Documentation

More documentation is available at Documentation.

Building

First, install the required packages. (ninja is required only for the quick build, you can use other build systems (like GNU Make) for the manual build)

Debian/Ubuntu: # apt install zlib1g-dev build-essential cmake ninja-build llvm-dev

CentOS/Fedora/RHEL: # dnf install gcc gcc-c++ zlib-devel libffi-devel cmake ninja-build llvm-devel

Arch: # pacman -S gcc cmake ninja llvm-libs llvm

On platforms that install ninja to /usr/bin/ninja instead of /usr/bin/ninja-build, CMake may fail. In that case, symlink ninja-build to ninja (ln -s /usr/bin/ninja /usr/bin/ninja-build).

Then, you can either use the quick-build script or do a manual build.

Quick build: ./build.sh

Manual build first-time setup:

mkdir build
cd build
cmake ..

Then, every time you want to build:

cd build
cmake --build .

Running

The compiler is built at build/sapphirec.

A few example commands:

$ build/sapphirec --version # prints the compiler version
$ build/sapphirec --help # shows usage
$ build/sapphirec main.sp # compiles a file
$ build/sapphirec main.sp -o main # compiles a file with output filename
$ build/sapphirec main.sp -o main --msystem darwin # compiles a file for macOS