mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-12 06:53:10 +03:00
10 lines
185 B
Plaintext
10 lines
185 B
Plaintext
// Basic Pedersen hash function
|
|
// 1 window x 3 bits
|
|
|
|
function main() {
|
|
let arr1: u32[2][3] = [[0; 3]; 2];
|
|
let arr2: u32[2][3] = [[0, 0, 0], [0, 0, 0]];
|
|
|
|
assert_eq(arr1, arr2);
|
|
|
|
} |