Run the compiled exercise
(&self)
| 84 | impl<'a> CompiledExercise<'a> { |
| 85 | // Run the compiled exercise |
| 86 | pub fn run(&self) -> Result<ExerciseOutput, ExerciseOutput> { |
| 87 | self.exercise.run() |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | // A representation of an already executed binary |