The high-performance LISP-like language that brings scientific computing and AI to the next level
Important: Eshkol is currently in early development. This preview release is intended for developers interested in exploring the language and potentially contributing to its development. It is not yet ready for production use.
Component | Status | Completion | Notes |
---|---|---|---|
Core Language Features | In Progress | 65% | Basic Scheme syntax and core special forms implemented |
Function Composition | In Progress | 75% | Basic composition works, advanced patterns may have issues |
Type System | In Progress | 55% | Optional type annotations and basic inference working |
Scientific Computing | In Progress | 70% | Vector operations and autodiff implemented |
MCP Tools | In Progress | 80% | Analysis tools available for development |
See our ROADMAP.md for development plans and KNOWN_ISSUES.md for current limitations and workarounds.
Eshkol is a revolutionary programming language that combines the elegant, expressive syntax of Scheme with the raw performance of C. Designed specifically for scientific computing and artificial intelligence applications, Eshkol delivers the perfect balance between developer productivity and computational efficiency.
Unlike other languages that force you to choose between expressiveness and performance, Eshkol gives you both:
- Write code that reads like mathematical notation with our LISP-like syntax
- Run at near-C speeds thanks to our direct compilation to optimized C code
- Manage memory deterministically with our innovative arena-based memory system
- Accelerate numerical computations using built-in SIMD optimizations
- Differentiate functions automatically for machine learning and optimization tasks
- Leverage existing C libraries with zero-overhead interoperability
-
Powerful Scheme Foundation - Core special forms and operations implemented:
define
,if
,lambda
,begin
,quote
,set!
,let
,and
,or
- Core list operations:
cons
,car
,cdr
,list
,pair?
,null?
,list?
,set-car!
,set-cdr!
- Write expressive, functional code just like in Scheme
-
Arena-Based Memory Management - Deterministic performance without GC pauses:
- Predictable memory allocation and deallocation patterns
- No garbage collection pauses or unpredictable latency spikes
- Perfect for real-time applications and high-performance computing
-
Vector Calculus Operations - Built-in support for mathematical operations:
- Gradient computation (โf)
- Divergence (โยทF)
- Curl (โรF)
- Laplacian (โยฒf)
- Vector field operations
-
Automatic Differentiation - First-class support for gradient-based methods:
- Forward-mode automatic differentiation
- Reverse-mode automatic differentiation
- Higher-order derivatives
- Jacobian and Hessian matrix computation (partial)
-
Type System - Comprehensive static typing with Scheme compatibility:
- Gradual typing system that combines static and dynamic typing
- Three typing approaches: implicit typing, inline explicit typing, and separate type declarations
- Powerful type inference to reduce annotation burden
- Compile-time type checking for early error detection
- Deep integration with automatic differentiation and scientific computing
-
MCP Tools Integration - Development tools for analysis and debugging:
- Type analysis tools
- Code generation analysis
- Binding and lambda analysis
- AST visualization
- Closure memory visualization
- Mutual recursion analysis
-
Type System Improvements - Enhancing type inference and checking:
- Type inference for automatic differentiation functions
- Vector return type handling
- Resolving type conflicts in generated C code
- Integration of type information with code generation
-
Scheme Compatibility - Working towards R5RS and R7RS-small compatibility:
- Basic type predicates
- Additional list processing functions (append, reverse, etc.)
- Numeric operations (partial)
- Boolean operations (partial)
-
Scientific Computing Enhancements - Expanding numerical capabilities:
- SIMD code generation optimization
- Matrix algorithms
- Array optimizations
- Gradient-based optimization algorithms
-
Scientific Computing Primitives - Built-in support for numerical computation:
- Vector and matrix operations with optimized implementations
- Vector calculus operations (gradient, divergence, curl, laplacian)
- Automatic SIMD vectorization for parallel data processing
- High-performance mathematical functions
-
Automatic Differentiation - First-class support for gradient-based methods:
- Compute derivatives with machine precision
- Support for both forward and reverse mode differentiation
- Jacobian and Hessian matrix computation
- Perfect for optimization, machine learning, and scientific computing
-
C Interoperability - Seamless integration with existing codebases:
- Zero-overhead FFI for calling C functions
- Direct access to C data structures
- Callback support for C libraries that require function pointers
-
VSCode Integration - Modern development experience:
- Syntax highlighting
- Language configuration
- Enhanced editing experience
-
Comprehensive Scheme Compatibility - Full implementation of R5RS and R7RS-small:
- Phase 1 (In Progress): Core data types and fundamental operations
- Phase 2: List processing and control flow
- Phase 3: Higher-order functions and data structures
- Phase 4: I/O and system interface
- Phase 5: Advanced features
-
Advanced Concurrency - Efficient parallel computation:
- Task parallelism for concurrent execution
- Data parallelism for collection operations
- Message passing for safe communication
- Lock-free algorithms for high-performance concurrency
-
GPU Acceleration - Leverage the power of graphics processors:
- GPGPU computing for massively parallel workloads
- Automatic kernel generation from high-level code
- Seamless integration with CPU code
-
Interactive Development Environment - Rapid prototyping and exploration:
- REPL for interactive code evaluation
- Notebook interface for literate programming
- Visualization tools for data exploration
Eshkol is designed from the ground up for high performance:
- Compilation to C ensures optimal machine code generation
- Arena-based memory management eliminates GC pauses
- SIMD optimization exploits modern CPU vector instructions
- Specialized numerical algorithms for scientific computing workloads
Early benchmarks show performance comparable to hand-optimized C code for numerical workloads, while maintaining the expressiveness of a high-level language.
mkdir -p build
cd build
cmake ..
make
Create a file named hello.esk
:
(define (main)
(display "Hello, Eshkol!"))
Compile and run:
./eshkol hello.esk
Check out the examples/
directory for sample programs demonstrating Eshkol's capabilities:
Fully Working Examples:
hello.esk
- Basic "Hello, World!" programdisplay_test.esk
- Basic "Hello, World!" program usingdisplay
functionfactorial.esk
- Recursive factorial calculationarithmetic.esk
- Basic arithmetic operationstail_recursive_factorial.esk
- Tail-recursive factorial implementation
Examples in Development (May Have Limitations):
function_composition.esk
- Higher-order functions and compositionfibonacci.esk
- Fibonacci sequence calculationmutual_recursion.esk
- Demonstration of mutual recursionlist_operations.esk
- Demonstration of list operations
Type System Examples (In Development):
untyped.esk
- Standard Scheme code without type annotationsimplicit_typed.esk
- Using type inference without explicit annotationsinline_typed.esk
- Using inline explicit type annotationsexplicit_param_typed.esk
- Using explicit parameter type annotationsseparate_typed.esk
- Using separate type declarationssimple_typed.esk
- Simple examples of typed functions
Scientific Computing Examples (In Development):
vector_calculus.esk
- Vector operations and calculusautodiff_example.esk
- Automatic differentiation in action
Comprehensive documentation is available to help you learn and master Eshkol:
- Implementation Status - Current implementation status and roadmap
- Design Document - Architecture and design decisions
- Vision and Purpose - The core philosophy behind Eshkol
- Differentiation Analysis - How Eshkol compares to other languages
- AI Focus - Eshkol's unique advantages for AI development
- Scientific Computing - Eshkol's scientific computing capabilities
- Technical White Paper - In-depth technical details
- Future Roadmap - The planned evolution of Eshkol
- Type System Overview - Comprehensive overview of Eshkol's type system
- Influences - Languages and systems that influenced Eshkol's type system
- Scientific Computing and AI - How the type system enables scientific computing and AI
- Scheme Compatibility - How Eshkol maintains Scheme compatibility while adding types
- Automatic Differentiation - The synergy between the type system and automatic differentiation
- Type System Tutorial - A practical guide to using Eshkol's type system
- Type System Reference - A comprehensive reference for all type-related syntax
- Scheme Compatibility - Overview of Scheme compatibility
- Implementation Plan - Plan for implementing Scheme features
- Known Issues - Current limitations and issues
- Master Tracking - Status of Scheme feature implementation
Eshkol uses the following file extensions:
.esk
- Eshkol source files.eskh
- Eshkol header files.eskir
- Intermediate representation.eskc
- Generated C code.esklib
- Compiled library.eskmod
- Module file.eskproj
- Project configuration.eskpkg
- Package definition
Eshkol is an ambitious project, and we welcome contributions from the community! Whether you're interested in language design, compiler implementation, scientific computing, or AI, there's a place for you in the Eshkol ecosystem.
Check out our Implementation Status and Scheme Compatibility Implementation Plan to see where you can help.
MIT
If you use Eshkol in your research, please cite it as:
@software{tsotchke2025eshkol,
author = {tsotchke},
title = {Eshkol: A High-Performance LISP-like language for Scientific Computing and AI},
year = {2025},
url = {https://github.com/tsotchke/eshkol}
}