marlowe_lang 0.1.2

experimental parser lib for Cardano Marlowe DSL
Documentation
1
2
3
4
5
6
7
use super::*;

/// Takes an instance of a Marlowe contract and serializes
/// it into the Marlowe DSL format
pub fn serialize(contract:Contract) -> String { 
    format!("{:#}",contract)
}