I'm assuming this is the way to request addition of a programming language in the judge system. So here's the code for the problem at claylabs.com/clay/

readln() {
    var s = readLine(stdin);
    if (back(s) == '\n')
        pop(s);
    return s;
}
main() {
    while (true) {
        var n = Int(readln());
        if (n == 42)
            break;
        println(n);
    }
}

Thank you
trss

  • created

    Nov '12
  • last reply

    Nov '12
  • 1

    reply

  • 321

    views

  • 2

    users

  • 1

    link

No it's not, go to the Online Judge section of the forum.

It might also be useful to outline why you want this language and what it's benefits are over other similar languages.