All Projects → pragmascript → Pragmascript

pragmascript / Pragmascript

Licence: mit

Labels

Projects that are alternatives of or similar to Pragmascript

Remill
Library for lifting of x86, amd64, and aarch64 machine code to LLVM bitcode
Stars: ✭ 633 (+8942.86%)
Mutual labels:  llvm
Numba
NumPy aware dynamic Python compiler using LLVM
Stars: ✭ 7,090 (+101185.71%)
Mutual labels:  llvm
Jucipp
A lightweight & cross-platform IDE supporting the most recent C++ standards. This project has moved to https://gitlab.com/cppit/jucipp.
Stars: ✭ 887 (+12571.43%)
Mutual labels:  llvm
Gocaml
🐫 Practical statically typed functional programming language implementation with Go and LLVM
Stars: ✭ 653 (+9228.57%)
Mutual labels:  llvm
Inkwell
It's a New Kind of Wrapper for Exposing LLVM (Safely)
Stars: ✭ 732 (+10357.14%)
Mutual labels:  llvm
Swift Llvm
Stars: ✭ 802 (+11357.14%)
Mutual labels:  llvm
Rhine Ml
🏞 an OCaml compiler for an untyped lisp
Stars: ✭ 621 (+8771.43%)
Mutual labels:  llvm
Llvm Tutor
A collection of out-of-tree LLVM passes for teaching and learning
Stars: ✭ 941 (+13342.86%)
Mutual labels:  llvm
Accelerate
Embedded language for high-performance array computations
Stars: ✭ 751 (+10628.57%)
Mutual labels:  llvm
Swift Llbuild
A low-level build system, used by Xcode and the Swift Package Manager
Stars: ✭ 836 (+11842.86%)
Mutual labels:  llvm
Coriander
Build NVIDIA® CUDA™ code for OpenCL™ 1.2 devices
Stars: ✭ 665 (+9400%)
Mutual labels:  llvm
Rust Python Example
Example of using Rust to Extend Python
Stars: ✭ 699 (+9885.71%)
Mutual labels:  llvm
Mbx
Supplementary material for my talk
Stars: ✭ 6 (-14.29%)
Mutual labels:  llvm
Llvmswift
A Swift wrapper for the LLVM C API (version 9.0.1)
Stars: ✭ 641 (+9057.14%)
Mutual labels:  llvm
Avrd
Embedded Systems in D - Port of avr-libc headers and most avr-gcc processor defines
Stars: ✭ 17 (+142.86%)
Mutual labels:  llvm
Fcd
An optimizing decompiler
Stars: ✭ 622 (+8785.71%)
Mutual labels:  llvm
Qbdi
A Dynamic Binary Instrumentation framework based on LLVM.
Stars: ✭ 801 (+11342.86%)
Mutual labels:  llvm
Ldc
The LLVM-based D Compiler.
Stars: ✭ 937 (+13285.71%)
Mutual labels:  llvm
Vivado hls tutorial
Source code of basic Xilinx Vivado HLS image processing tutorial using HLS openCV functions
Stars: ✭ 17 (+142.86%)
Mutual labels:  llvm
Grin
GRIN is a compiler back-end for lazy and strict functional languages with whole program optimization support.
Stars: ✭ 834 (+11814.29%)
Mutual labels:  llvm

pragma

A programming language that aims to be slightly more comfy than C without sacrificing performance.

Small Pathtracer Example

Video

Syntax Example (everything is still in flux)

import "preamble.prag"

[
	"compile.output": "hello_world.exe",
	"compile.entry" : "true",
	"compile.debug" : "true",
 	"compile.opt"   : "0",
 	"compile.run"   : "true",
 	"compile.libs"  : "kernel32.lib",
	"compile.path"  : "C:\Program Files (x86)\Windows Kits\10\Lib\10.0.14393.0\um\x64"
]
let main = fun () => void 
{
	print_string("hello, world!\n");
	for (var i = 0; i < 12; ++i) {
		print_i32(i + 1);
		if (i != 11) {
			print_string(", ");
		}
	}
	print_string("\n");
}

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].