Crates.io | hash-chain |
lib.rs | hash-chain |
version | 0.3.2 |
source | src |
created_at | 2019-11-23 16:25:52.819514 |
updated_at | 2020-05-10 21:46:14.295076 |
description | A tiered hashmap and hashset implementation that allows for easily representing lexically scoped variables |
homepage | |
repository | https://github.com/rusty-ecma/hash-chain |
max_upload_size | |
id | 183746 |
size | 47,699 |
A tiered hashmap and hashset implementation that allows for easily representing lexically scoped variables.
const x = 0;
const y = 2;
function me() {
let x = 1;
console.log(x); //prints 1
console.log(y); //prints 2
}
console.log(x) //prints 0