blob: a9c4318a9e46746ffaaa00ffa37ba6fbcd7b80b0 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.fibonacci;
[Discoverable]
interface FibonacciService {
CalcFibonacci(uint32 n) -> (uint32 result);
};