Classpad_string
Read and write ClasspadString
s that can be stored in XCP files and loaded onto the CASIO Classpad fx-400.
This library provides the ClasspadChar
(a single classpad character), ClasspadString
, and XCPFile
.
Here is how you can write "this is some text" into a XCP file.
use *;
use FromStr;
let text = "this is some text";
let classpad_s = from_str.unwrap;
let xcp = XCPFile ;
let mut outputxcp = create.unwrap;
xcp.write_to_file;