qir_runner/
main.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#![deny(clippy::all, clippy::pedantic)]
5
6fn main() -> Result<(), String> {
7    runner::main(None::<Vec<String>>)
8}