celsium 0.1.7

A library for building interpreters
Documentation
1
2
3
4
5
use crate::bytecode::{ self, OPTCODE };

pub fn parse_bytecode(bytecode_json: String) -> Vec<OPTCODE>{
    serde_json::from_str(&bytecode_json).unwrap()
}