20 lines
423 B
C++
20 lines
423 B
C++
/* file pretty_variable.hpp
|
|
*
|
|
* author: Roland Conybeare, Jul 2025
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "pretty_expression.hpp"
|
|
#include "Variable.hpp"
|
|
|
|
namespace xo {
|
|
namespace print {
|
|
template <>
|
|
struct ppdetail<xo::scm::Variable> {
|
|
static bool print_pretty(const ppindentinfo & ppii, const xo::scm::Expression & x) {
|
|
return x.pretty_print(ppii);
|
|
}
|
|
};
|
|
}
|
|
}
|