Skip to content
LexerLangv0.1.0

Turkey's first programming language of its kind

Throw it, run it.

A server-side language with no build step. lexer serve reads the source, parses it and runs it directly.

macOS · Linux
curl -fsSL https://lexer.gurerlabs.com/install.sh | sh

No build step

There is deliberately no build and no run. lexer serve reads the source, parses it and runs it directly; with --watch the server shuts down gracefully and comes back up every time you save the file.

LexerLang
package merhaba

use http_server, html_document

$app = new http_server
$doc = new html_document

$doc.title = 'Merhaba'
$doc.body.add(`<p>Merhaba Dünya</p>`)

with $app
    .document.add($doc)
    .listen({port: 3000})
end with
Terminal
lexer serve merhaba.lexer --watch