init multi services

This commit is contained in:
boneyard93501
2021-03-01 17:03:57 -06:00
parent 19d5fd4db6
commit 5f10fb3559
31 changed files with 1282 additions and 0 deletions

View File

@ -0,0 +1,13 @@
use fluence::fce;
fn main() {}
#[fce]
fn simple_range_list(start: i64, step: u32, n: u32) -> Vec<i64> {
let mut result: Vec<i64> = Vec::new();
let stop = start - n as i64;
for x in (start..stop).step_by(step as usize) {
result.push(x);
}
result
}