GithubHelp home page GithubHelp logo

Please add ZetScript about scriptorium HOT 1 OPEN

jespa007 avatar jespa007 commented on June 21, 2024 1
Please add ZetScript

from scriptorium.

Comments (1)

jespa007 avatar jespa007 commented on June 21, 2024

Hi @r-lyeh-archived and happy new year,

I have recently updated ZetScript at 2.0.0. The speed it has increased ~2.5 times.

I attach the new release here,

zetscript-2.0.0.tar.gz

Howewer, with all the changes made, fib.zs script it has to change into the following,

function fibR(n)
{
    if (n < 2) { 
     	return n; 
    }

    return fibR(n-2)+fibR(n-1);
}

Console::outln("fib: {0}", fibR(34) );

By default cmake project it compiles ZetScript statically so I think it fits the requirements.

Cheers,

from scriptorium.

Related Issues (14)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.