BVM

1 program Added 2026-03-05T17:32:59Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: BVM Virtual Machine Language
Provenance: commit fa2b7b403d · authored 2026-03-05T18:33:27+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

HVML (0.53)HVM (0.35)AsmL (0.33)Caml (0.32)SMAL (0.32)

LLM-contributed programs

Functions, Conditionals, and Loops Demo

Provenance: commit fa2b7b403d · authored 2026-03-05T18:33:27+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.contract · added: 2026-03-05T17:32:59Z
contract mycnt {
    func myfunc0(b) {
        var x = b
        return x
    }

    func myfunc1(a, c) {
        var r = myfunc0(333)
        return a+c+r
    }

    var y = myfunc1(111, 222)
    println(y)

    var m = 111
    var n = 222

    if m > n {
        var i = 555
        println(i)
    } elif m < n {
        var j = 666
        println(j)
    } else {
        var l = 777
        println(l)
    }

    var t = (1+2)*3
    println(t)

    var a = 0
    while (a<10) {
       println(a)
       a = a + 1
    }

    var a = "mystr"
    println(a)

    var a = 1
    a += 3 * (5 - 1)
    println(a)
}

Contribute — propose a file extension

Tell us where to find evidence about BVM (mapped to pl/bvm). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/BVM/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← BuzzFizz bwBASIC →