Visual X# is an experimental native programming language and compiler project. This repository contains the compiler, project DSL, runtime components, language examples, tests, and supporting developer tools.
The repository is under an architectural transition. The production .vxs route now uses the Haskell lexer-through-Core
frontend and hands a verified VXCR Core artifact to the C++20 CorePrep-to-Xpp-to-Xmm-to-LLVM pipeline. The previous C
lexer/parser, semantic tree, macro, HIR/MIR duplicate, Rust FFI session bridge, and DIMCLI dependency have been removed.
The retained Rust compiler core remains an implementation and test asset, but it is no longer linked into vxs.
.vxs source
→ Haskell Lexer
→ Haskell Parser
→ Parsed AST
→ Renamer
→ Name Resolution
→ Resolved AST
→ Type Checker
→ Typed AST
→ Desugarer
→ Core
→ Core optimizations
→ CorePrep
→ C++20 Xpp
→ Xpp optimizations
→ C++20 Xmm
→ Xmm optimizations
→ LLVM bitcode
→ native object and .vxse executable
Core, CorePrep, Xpp, and Xmm are target-independent. Their public artifact extensions are .core, .xpp, and .xmm;
normal compilation keeps intermediate data in memory unless explicit emission is requested.
The supported native build is Windows with:
- Visual Studio 2026 developer environment;
- ClangCL for retained C components and C++20;
- LLD and Ninja;
- CMake 3.31 or newer;
- an LLVM development package containing
LLVMConfig.cmake; - Rustup and Cargo;
- GHC 9.10 and Cabal for the Haskell frontend;
- JDK 25 and the Kotlin runner for the project DSL; and
- vcpkg for the small native dependency set declared by
vcpkg.json.
Repository configuration does not contain a machine-specific LLVM installation path. Set LLVM_ROOT or LLVM_DIR, or
make the LLVM CMake package discoverable through the normal CMake prefix search.
Initialize the recursive submodules first:
git submodule update --init --recursiveInstall the manifest dependencies using an existing vcpkg installation:
& "$env:VCPKG_ROOT\vcpkg.exe" install --triplet x64-windows --x-manifest-root .Configure, build, and test from a Visual Studio 2026 developer terminal:
cmake --preset clangcl-debug `
-DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_ROOT\scripts\buildsystems\vcpkg.cmake"
cmake --build --preset clangcl-debug --parallel 4
ctest --preset clangcl-debug --output-on-failure --parallel 2The preset intentionally uses tool names and environment-based discovery rather than absolute installation paths.
The compiler executable is vxs. Its C++20 command parser uses one typed schema for command scope, option arity, duplicate
rejection, defaults, and value conversion; it has no third-party CLI dependency. For .vxs, check runs the Haskell
frontend and the complete in-memory Core/CorePrep/Xpp/Xmm/LLVM validation route. build -Emit core|llvmll|llvmbc writes the
selected sibling artifact. Native object/executable production and public Xpp/Xmm readers and writers remain later work.
CorePrep wire bytes are never accepted under the public .core extension.
The reliable single-file validation form is:
.\build\clangcl-debug\vxs.exe check -File .\path\to\Main.vxsFrom a directory containing Visual.XSharp.kts, project validation uses the configured source roots and namespace-qualified
entry directly:
.\path\to\vxs.exe check
.\path\to\vxs.exe build -Emit coreThe compiler recursively discovers case-sensitive .vxs files, applies project-relative exclusions, merges files by
declared namespace, validates every namespace, and selects the configured entry class. It does not require namespace and
directory layouts to match.
See CLI for the exact accepted surface and implementation status.
A Visual X# project uses one Visual.XSharp.kts file. sources.main.entry names a namespace-qualified class; its final
segment is a class name and need not be Main or Program. The selected class must provide a parameterless
public static void Main() method; a top-level runtime function is not an entry point.
The entry is resolved from namespace and type identity. It does not name a source file, and source file names or directory
layout do not have to mirror the namespace. The Kotlin runtime passes source roots and exclusions to the compiler without
walking the project for .vxs files. The Haskell frontend now owns that discovery, strict UTF-8 decoding, deterministic
ordering, exclusion matching, namespace merge, and entry validation.
project {
name = "Example"
version = "0.1.0"
stability = Stability.DEV
}
sources {
main {
srcDir = "Sources"
entry = "Example.Main"
}
}See Project files for the current Kotlin DSL.
The binary project lockfile can be inspected without changing the normal project-evaluation output. The separate vxdc
tool evaluates Visual.XSharp.kts and writes deterministic, replayable SQL to the requested output path. VXDC does not
require a particular output filename extension.
The Spec directory contains 24 topic-oriented .vxs example suites. They record current language design
intent, including valid and invalid fragments, but they are not concatenated applications and must not be treated as a claim
that every rule is already implemented by vxs.
- Documentation index
- Architecture
- Implementation status
- Building and testing
- CLI
- Project files
- Specification guide
- Repository layout
- Contributing
See LICENSE.txt and NOTICE.txt.