mirror of
https://github.com/openai/codex.git
synced 2026-04-26 15:45:02 +00:00
10 lines
193 B
Rust
10 lines
193 B
Rust
#![warn(uncommented_anonymous_literal_argument)]
|
|
|
|
fn describe(prefix: &str, suffix: &str) {
|
|
let _ = (prefix, suffix);
|
|
}
|
|
|
|
fn main() {
|
|
describe("openai", r"https://api.openai.com/v1");
|
|
}
|