Progress!

This commit is contained in:
Markus Hauschild
2013-05-31 23:51:44 +02:00
parent 713b5078cd
commit 28ca85b94e
9 changed files with 129 additions and 17 deletions

15
src/Token.cpp Normal file
View 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_;
}