Imba

1 program Added 2025-11-12T09:17:31Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: —
Provenance: commit 98712638fc · authored 2025-11-12T10:17:31+01:00 · model google/gemini-2.5-pro

Sources mentioning this language

3 sources · pl_id: pl/imba
LLM (this repo) · 1PldbLinguist

Extensions claimed by this language

1 claim. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.imbalinguistprimary18.7K files

Related languages

Mamba (0.30)Imandra (0.25)Iota (0.20)Impromptu (0.13)Albatross (0.12)

LLM-contributed programs

Showcase Card Component for imba.io

Provenance: commit 98712638fc · authored 2025-11-12T10:17:31+01:00 · model google/gemini-2.5-pro · Temp 0.4
code.imba · license: MIT · added: 2025-11-12T09:17:31Z
import {api} from '../api'

export tag ShowcaseCard < button
    prop item
    prop index

    def render
        <self[d:hflex ja:center]>
            <div.preview[pos:relative w:100% h:100% d:block]>
                <div.overlay[pos:absolute inset:0 bg:gray9.10 z:1]>
                <div.title[pos:absolute l:4 b:4 z:2 c:white fs:xl fw:600]> item.title
                <img[d:block w:100% h:100% object-fit:cover] src=api.url(item.image)>

    def enter
        let rect = getBoundingClientRect()
        let clone = <div.preview[pos:fixed z:100] style=rect>
        document.body.appendChild(clone)
        imba.commit do
            clone.style.borderRadius = '2rem'
            clone.style.width = '100%'
            clone.style.height = '100%'
            clone.style.top = 0
            clone.style.left = 0
        await 200ms
        imba.commit do
            clone.find('.overlay').style.opacity = 0
        await 200ms
        emit('show',item)
        await 100ms
        clone.remove()

    def ontap e
        enter()

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about Imba (mapped to pl/imba). 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/Imba/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← imap-protocol Imbored →