wll 0.1.1

A Wolfram LibraryLink interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(clippy::unit_arg)]
use wll::Result;

#[wll::setup]
fn setup() {}

#[wll::teardown]
fn teardown() {}

#[wll::export]
fn print(n: usize) -> Result<()> {
    eprintln!("Input: {}", n);
    Ok(())
}

fn main() {}