code-example
code-example
Tags: #javascript #html #css #rust
Code Example
This is a code example.
function add(a, b) {
return a + b;
}And this is another code example.
function add(a: i32, b: i32) -> i32 {
a + b
}Tags: #javascript #html #css #rust
function add(a, b) {
return a + b;
}function add(a: i32, b: i32) -> i32 {
a + b
}