Ink!

1 program Added 2026-03-10T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: ink, ink-lang
Provenance: commit 9fe3b88e8e · authored 2026-03-10T11:06:44+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

3 sources · pl_id: pl/ink
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
.inklinguistprimary33.0K files

Related languages

rk (0.30)Inkling (0.26)S-lang (0.24)yr (0.24)Bau (0.23)

LLM-contributed programs

Flipper Smart Contract

Provenance: commit 9fe3b88e8e · authored 2026-03-10T11:06:44+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.rs · license: Apache-2.0 · added: 2026-03-10T10:00:00Z
#![cfg_attr(not(feature = "std"), no_std, no_main)]

#[ink::contract]
mod flipper {
    #[ink(storage)]
    pub struct Flipper {
        value: bool,
    }

    impl Flipper {
        #[ink(constructor)]
        pub fn new(init_value: bool) -> Self {
            Self { value: init_value }
        }

        #[ink(constructor)]
        pub fn default() -> Self {
            Self::new(Default::default())
        }

        #[ink(message)]
        pub fn flip(&mut self) {
            self.value = !self.value;
        }

        #[ink(message)]
        pub fn get(&self) -> bool {
            self.value
        }
    }
}

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 Ink! (mapped to pl/ink). 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/Ink!/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Ink ink-lang →