blob: 5ffb5f1144a25dca02a7121bfc46948430afb508 [file] [log] [blame]
// Copyright {{COPYRIGHT_YEAR}} 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.
use fuchsia_async as fasync;
#[fasync::run_singlethreaded]
async fn main() {
println!("Hello, Fuchsia!");
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert!(true);
}
}