Giter Site home page Giter Site logo

Comments (4)

perillo avatar perillo commented on June 4, 2024 2

@chrboesch start step is no longer available but there is still a reference in the README file.

from ziglings.

chrboesch avatar chrboesch commented on June 4, 2024

Just run zig build -Dn=22 for a single exercise and increase the number after finishing. I'll have to take a look into why start doesn't work.

from ziglings.

perillo avatar perillo commented on June 4, 2024

Is there still a way to prevent previously solved exercises from being compiled and checked other than specifying each exercise number manually?

zig version: 0.12.0-dev.152+411462e1c ziglings version: 1e9124b333310b982236d86e2928bbd44f93634e os: windows 11

Unfortunately it is not easy to implement, since the Zig build file is declarative.
In a local branch I have a draft implementation (using the build cache), but it has several problems.

from ziglings.

avi-cenna avatar avi-cenna commented on June 4, 2024

For anyone that wants a more automated solution, you can use this nushell script. You can save it as runner.nu in the root of the ziglings directory, and then run it like so: nu runner.nu 5 10. This will run exercises 5 through 10.

# Change to the path of your dev zig executable
let zig_path = "~/Downloads/zig-dev/zig"

def main [start: int, end: int] {
    print $"Running ziglings exercises from ($start) to ($end)"
    let rng = $start..$end;
    for i in $rng {
        ^$zig_path build $"-Dn=($i)"
    }
}

from ziglings.

Related Issues (20)

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.