This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
description = "Python development environment"; | |
inputs = { | |
nixpkgs.url = "github:NixOS/nixpkgs/23.05"; | |
flake-utils.url = "github:numtide/flake-utils"; | |
}; | |
outputs = { self, nixpkgs, flake-utils }: | |
flake-utils.lib.eachDefaultSystem (system: | |
let pkgs = nixpkgs.legacyPackages.${system}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env gforth | |
warnings off | |
\ A key value store in Forth | |
100 constant #buckets | |
create 'buckets align #buckets cells allot | |
'buckets #buckets erase | |
does> swap dup 2 mod + #buckets 2/ mod + ; | |
\ no it doesn't lol |