From fbfaafbc5711368234f9f92ad67ffa03f558a6fb Mon Sep 17 00:00:00 2001 From: Arnaud Bailly Date: Sun, 26 Jan 2025 09:10:02 +0100 Subject: Report reverse/reverse property --- pbt/ts/src/index.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pbt/ts/src/index.ts') diff --git a/pbt/ts/src/index.ts b/pbt/ts/src/index.ts index cf8b7ff..37ab4c9 100644 --- a/pbt/ts/src/index.ts +++ b/pbt/ts/src/index.ts @@ -91,8 +91,10 @@ let prop_reverse_is_self_inverse = async function main() { let rng = new Prando(Math.random() * 1000); - let result = prop_reverse_with_two_lists(rng, 10); - console.log('result: ' + JSON.stringify(result)); + let reverse_append_result = prop_reverse_with_two_lists(rng, 10); + let reverse_reverse_result = prop_reverse_is_self_inverse(rng, 10); + console.log('result: ' + JSON.stringify(reverse_append_result)); + console.log('result: ' + JSON.stringify(reverse_reverse_result)); } main(); -- cgit v1.2.3