diff options
| -rw-r--r-- | src/typer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/typer.rs b/src/typer.rs index 99f5487..f5b0e00 100644 --- a/src/typer.rs +++ b/src/typer.rs @@ -131,8 +131,8 @@ impl VM { print!(" "); } match s { + Type::Function(block) => print!("Function({:?} -> {:?})", block.args.green(), block.ret.green()), s => print!("{:?}", s.green()), - Type::Function(block) => print!("Function({:?} -> {:?})", block.args, block.ret), } } println!("]"); |
