Arif Anatol Celik
Results
3
issues of
Arif Anatol Celik
The following examples do not work anymore since the bump of the truffle version in 26774d5c8b3d8d0eb65c58b9e2a6387d9290de9b. The critical change happened in graalvm/graal@727cc29f9747d93a0c8fc1f1384c05731658fa7a. **C** ```c #include #include #include void *foo(){ printf("foo\n");...
This PR enables the retrieving and parsing of command line args from Rust with `args_os`. Example: ```rust let n = std::env::args_os().nth(1) .and_then(|s| s.into_string().ok()) .and_then(|n| n.parse().ok()) .unwrap_or(7); ```
oca-signed