blob: 0859f7d8a8a7790194ff954b2345052f8fcec22f [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]
protocol FibonacciService {
CalcFibonacci(uint32 n) -> (uint32 result);
};