* init reorg

* updated readme

* fix CI

* remove outdated ipfs-node example

* add Readme

* update readme, add config file

Co-authored-by: folex <0xdxdy@gmail.com>
This commit is contained in:
boneyard93501
2021-07-16 02:04:18 -05:00
committed by GitHub
parent c98c838a2d
commit 6381411ed9
271 changed files with 581 additions and 3013 deletions

View File

@ -0,0 +1,16 @@
use marine_rs_sdk::marine;
use marine_rs_sdk::module_manifest;
module_manifest!();
fn main() {}
#[marine]
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
}