MINIMACY®
Build systems you can trust

A new minimalism

100% control requires 4 things

How do you bring complete system control within reach of a single human brain?

Only MINIMACY meets these requirements

 

The MINIMACY architecture

The combination of a high-level language, an instant compiler, and a virtual processor.

MINIMACY makes it easy to follow the calculation from the high-level to the low-level (aka what the cpu actually computes).

 

A portable stand-alone technology that can work with or without an operating system

Develop once, deploy anywhere including bare-metal.

MINIMACY VM source code is less than 900kB (C language).

 

A high-level, and powerful language

 
//------------ list concatenation
fun listConcat(p, q)=
    if p==nil then q else head(p)::listConcat(tail(p), q);;
 
//------------ apply a function on a list
fun listMap(p, f)=
    if p<>nil then (call f(head(p))::listMap(tail(p), f);;
 
//------------ return the length of a list
fun listLength(p)=
    if p==nil then 0 else 1+listLength(tail(p));; 
 
 
> compiling...
> type inference:
> fun listConcat: fun list a1 list a1 -> list a1
> fun listMap   : fun list a1 fun a1 -> a2 -> list a2
> fun listLength: fun list a1 -> Int
> compiled in 0 ms
 
Lambda-calculus inspired Strong static typing Type inference ML style Concise & safe Vibe coding ready
 

Human documentation

  • Discover the it-book, a new way to interact with the community.
  • The it-book keeps the documentation accurate, useful, and consistent.
  • React, ask questions, get answers.
  • Follow the "Get started" link in the top menu.
 

Keep your software development under control

  • You perform better when your system is simple and crystal clear
  • You don't waste time guessing how it works, nor risk regression when your dependencies evolve
  • You get exactly what you need, nothing more.

MINIMACY clears the room, and smart software development may begin.

 

Time to apply "Less is more"
to software

Technical specifications

Now you're gonna perform!


Get started
"Perfection is reached, not when there is nothing left to add, but when there is nothing left to remove."
Antoine de St-Exupéry
Copyright amberMind 2020-2026
contact@minimacy.net
MINIMACY is registered in U.S. Patent and Trademark Office