package pattpack.expr_extr;

import java.io.*;

/**
 *  This interface is a Marker.
 *  It allows to extend the functionality of Variables from the previous
 *  exercise (e.g., from simple variables to variables
 *  that know their line number) without editing all the statement classes.
 */
public interface Variable extends Expr {}
