summaryrefslogtreecommitdiff
path: root/example/test/main.c
blob: 92e3b29ddce7762c3fb77b9397d9a460af2d2cac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// Copyright (c) 2026 Jacob McDonnell
//
// SPDX-License-Identifier: BSD-2-Clause
//
#include <stdio.h>
#include "fib.h"
#include "config.h"

int main(void) {
    printf("fib(%u) = %llu\n", CONFIG_FIB_NUMBER, fib(CONFIG_FIB_NUMBER));
    return 0;
}