10 lines
170 B
Rust
10 lines
170 B
Rust
![]() |
//! @brief Solana Rust-based BPF program utility functions and types
|
||
|
|
||
|
#![no_std]
|
||
|
|
||
|
extern crate solana_sdk_bpf_utils;
|
||
|
|
||
|
pub fn work(x: u128, y: u128) -> u128 {
|
||
|
x + y
|
||
|
}
|