/*
* Copyright (c) 2025 Raphael Amorim
*
* This file is part of flash, which is licensed
* under GNU General Public License v3.0.
*/useflash::interpreter::Interpreter;usestd::io;fnmain()->io::Result<()>{letmut interpreter =Interpreter::new();
interpreter.run_interactive()?;Ok(())}