mirror of
https://github.com/Noratrieb/coldsquare.git
synced 2026-01-16 17:35:10 +01:00
parsing
This commit is contained in:
parent
48a7270bbb
commit
b07a20566c
12 changed files with 514 additions and 158 deletions
|
|
@ -1,3 +1,10 @@
|
|||
use coldsquare::parse_class_file;
|
||||
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
let file = "primeNumberChecker.class";
|
||||
let file = std::fs::read(file).unwrap();
|
||||
|
||||
let class_file = parse_class_file(file).unwrap();
|
||||
|
||||
println!("{:?}", class_file);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue