Skip to content

Instantly share code, notes, and snippets.

@mrRedSun
mrRedSun / tribonacci_test
Created August 20, 2025 11:00
Tribonacci test
import 'dart:async';
void main() async {
test();
}
void test() {
expect(tribonacci(0), 0);
expect(tribonacci(1), 1);
expect(tribonacci(2), 1);