Skip to content
View tupini07's full-sized avatar
🐘
🐘

Block or report tupini07

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
tupini07/README.md

Hi 👋

Thanks for visiting. Here's some nice code

(defn multiple-of [p] #(zero? (mod % p)))
(defn sieve [[p & ps]]
  (cons p (lazy-seq (->> ps
                         (remove (multiple-of p))
                         (sieve))))
(take 10 (sieve (iterate inc 2)))
;;=> (2 3 5 7 11 13 17 19 23 29)      

Popular repositories Loading

  1. raylib-cpp-cmake-template raylib-cpp-cmake-template Public template

    A small Raylib C++ template that uses CMake, LDtk, and Box2d

    C++ 91 10

  2. i3-bindings i3-bindings Public

    Simple tool that reads the i3 config files and shows a table with the bindings defined therein

    Rust 54 1

  3. Brownian-Shrubs Brownian-Shrubs Public

    Procedural shrubs generation with three.js and brownian motion!

    JavaScript 3

  4. RubyMan RubyMan Public

    A very simple 2D game that's played in the terminal (based on the all well known PacMan).This project is intended for people who want to start experimenting with open source.

    Ruby 2 5

  5. games games Public

    Collection of small games. Mainly for learning

    Lua 2

  6. Godville-Tools Godville-Tools Public

    A collection of tool for interacting with the Godville game.

    JavaScript 1 1