Skip to content

Commit fe676f8

Browse files
committed
[anneal][v2] Add charon execution engine, expand command CLI, and integration tests
gherrit-pr-id: Gnafivbpqcaatsvsxamgsjcudchscvaae
1 parent 16c2a9f commit fe676f8

10 files changed

Lines changed: 1147 additions & 86 deletions

File tree

anneal/v2/examples/simple.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pub fn add(left: usize, right: usize) -> usize {
2+
left + right
3+
}
4+
5+
fn main() {
6+
println!("Hello, world! {}", add(1, 2));
7+
}

0 commit comments

Comments
 (0)