Progress!
This commit is contained in:
15
src/Token.cpp
Normal file
15
src/Token.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
/* The scully programming language.
|
||||
*
|
||||
* Copyright (c) Peter Dahlberg, Markus Hauschild and Florian Sattler, 2013.
|
||||
* Licensed under the GNU GPL v2.
|
||||
*/
|
||||
|
||||
#include "Token.h"
|
||||
|
||||
Token::Token(std::string text) : text_(text) {
|
||||
//
|
||||
}
|
||||
|
||||
std::string Token::getText() {
|
||||
return text_;
|
||||
}
|
||||
Reference in New Issue
Block a user