ht's Scheme Interpreter
1.0
a simplified scheme interpreter implementation
Main Page
Related Pages
Classes
Files
File List
File Members
parenthesis.hpp
Go to the documentation of this file.
1
#
ifndef
__SCHEME_TYPES_PARENTHESIS
2
#
define
__SCHEME_TYPES_PARENTHESIS
3
#
include
"arch.hpp"
4
#
include
<
string
>
5
bool
isLeftParenthesis
(
const
std::string& token) {
return
token ==
"("
; }
6
bool
isRightParenthesis
(
const
std::string& token) {
return
token ==
")"
; }
7
8
#
endif
isRightParenthesis
bool isRightParenthesis(const std::string &token)
Definition:
parenthesis.hpp:6
isLeftParenthesis
bool isLeftParenthesis(const std::string &token)
Definition:
parenthesis.hpp:5
types
parenthesis.hpp
Generated by
1.8.9.1