-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CMakeified everything. Most tests are working with the exception of 2.
-Kurtis
- Loading branch information
Showing
354 changed files
with
1,047 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
cmake_minimum_required(VERSION 2.8) | ||
project(lci) | ||
|
||
ENABLE_TESTING() | ||
SET(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ) | ||
|
||
SET(HDRS | ||
interpreter.h | ||
lexer.h | ||
parser.h | ||
tokenizer.h | ||
unicode.h | ||
) | ||
|
||
SET(SRCS | ||
interpreter.c | ||
lexer.c | ||
main.c | ||
parser.c | ||
tokenizer.c | ||
unicode.c | ||
) | ||
|
||
add_executable(lci ${SRCS} ${HDRS}) | ||
add_subdirectory(test) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
INCLUDE(ParseArguments) | ||
|
||
|
||
FUNCTION(ADD_LOL_TEST TEST_NAME) | ||
PARSE_ARGUMENTS(ARG "LOLCODE;OUTPUT;ERROR" "" ${ARGN}) | ||
|
||
IF(NOT ARG_LOLCODE) | ||
SET(ARG_LOLCODE ${CMAKE_CURRENT_SOURCE_DIR}/test.lol) | ||
ENDIF(NOT ARG_LOLCODE) | ||
|
||
SET( TEST_COMMAND python ${CMAKE_SOURCE_DIR}/test/testDriver.py ${CMAKE_BINARY_DIR}/lci ${ARG_LOLCODE} ) | ||
|
||
IF(ARG_OUTPUT) | ||
LIST(APPEND TEST_COMMAND -o=${CMAKE_CURRENT_SOURCE_DIR}/${ARG_OUTPUT}) | ||
ENDIF(ARG_OUTPUT) | ||
|
||
IF(ARG_ERROR) | ||
LIST(APPEND TEST_COMMAND -e=${CMAKE_CURRENT_SOURCE_DIR}/${ARG_ERROR}) | ||
ENDIF(ARG_ERROR) | ||
|
||
|
||
ADD_TEST(NAME ${TEST_NAME} COMMAND ${TEST_COMMAND}) | ||
|
||
ENDFUNCTION() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
MACRO(PARSE_ARGUMENTS prefix arg_names option_names) | ||
SET(DEFAULT_ARGS) | ||
FOREACH(arg_name ${arg_names}) | ||
SET(${prefix}_${arg_name}) | ||
ENDFOREACH(arg_name) | ||
FOREACH(option ${option_names}) | ||
SET(${prefix}_${option} FALSE) | ||
ENDFOREACH(option) | ||
|
||
SET(current_arg_name DEFAULT_ARGS) | ||
SET(current_arg_list) | ||
FOREACH(arg ${ARGN}) | ||
SET(larg_names ${arg_names}) | ||
LIST(FIND larg_names "${arg}" is_arg_name) | ||
IF (is_arg_name GREATER -1) | ||
SET(${prefix}_${current_arg_name} ${current_arg_list}) | ||
SET(current_arg_name ${arg}) | ||
SET(current_arg_list) | ||
ELSE (is_arg_name GREATER -1) | ||
SET(loption_names ${option_names}) | ||
LIST(FIND loption_names "${arg}" is_option) | ||
IF (is_option GREATER -1) | ||
SET(${prefix}_${arg} TRUE) | ||
ELSE (is_option GREATER -1) | ||
SET(current_arg_list ${current_arg_list} ${arg}) | ||
ENDIF (is_option GREATER -1) | ||
ENDIF (is_arg_name GREATER -1) | ||
ENDFOREACH(arg) | ||
SET(${prefix}_${current_arg_name} ${current_arg_list}) | ||
ENDMACRO(PARSE_ARGUMENTS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(1-EmptyMainBlock OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(10-CommasSeparate OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(11-EllipsesJoinLF OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(12-EllipsesJoinCR OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/1-Structure/13-EllipsesJoinCRLF/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(13-EllipsesJoinCRLF OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/1-Structure/14-NoNewlineAfterJoinLF/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(14-NoNewlineAfterJoinLF) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/1-Structure/15-NoNewlineAfterJoinCR/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(15-NoNewlineAfterJoinCR) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/1-Structure/16-NoNewlineAfterJoinCRLF/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(16-NoNewlineAfterJoinCRLF) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(17-Includes OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(2-MustBeginWithHAI) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/1-Structure/3-MustIncludeVersion/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(3-MustIncludeVersion) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/1-Structure/4-MustEndWithKTHXBYE/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(4-MustEndWithKTHXBYE) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/1-Structure/5-IndentationIgnored/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(5-IndentationIgnored OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/1-Structure/6-WhitespaceBetweenTokens/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(6-WhitespaceBetweenTokens OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(7-NewlineLF OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(8-NewlineCR OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(9-NewlineCRLF OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
add_subdirectory(1-EmptyMainBlock) | ||
add_subdirectory(10-CommasSeparate) | ||
add_subdirectory(11-EllipsesJoinLF) | ||
add_subdirectory(12-EllipsesJoinCR) | ||
add_subdirectory(13-EllipsesJoinCRLF) | ||
add_subdirectory(14-NoNewlineAfterJoinLF) | ||
add_subdirectory(15-NoNewlineAfterJoinCR) | ||
add_subdirectory(16-NoNewlineAfterJoinCRLF) | ||
add_subdirectory(17-Includes) | ||
add_subdirectory(2-MustBeginWithHAI) | ||
add_subdirectory(3-MustIncludeVersion) | ||
add_subdirectory(4-MustEndWithKTHXBYE) | ||
add_subdirectory(5-IndentationIgnored) | ||
add_subdirectory(6-WhitespaceBetweenTokens) | ||
add_subdirectory(7-NewlineLF) | ||
add_subdirectory(8-NewlineCR) | ||
add_subdirectory(9-NewlineCRLF) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(1-Breaks OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(2-Increment OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(3-Decrement OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(4-Until OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(5-While OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(6-UnaryFunction OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(7-EmptyBody OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(8-UntilMustIncludeVar) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(9-WhileMustIncludeVar) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
add_subdirectory(1-Breaks) | ||
add_subdirectory(2-Increment) | ||
add_subdirectory(3-Decrement) | ||
add_subdirectory(4-Until) | ||
add_subdirectory(5-While) | ||
add_subdirectory(6-UnaryFunction) | ||
add_subdirectory(7-EmptyBody) | ||
add_subdirectory(8-UntilMustIncludeVar) | ||
add_subdirectory(9-WhileMustIncludeVar) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(1-EllipsesJoinLF OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(2-EllipsesJoinCR OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(3-EllipsesJoinCRLF OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(4-Strings OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(5-CodePointInString OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/11-Unicode/6-NormativeNameInString/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(6-NormativeNameInString OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/11-Unicode/7-InvalidCodePointInString/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(7-InvalidCodePointInString) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/11-Unicode/8-InvalidNormativeName/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(8-InvalidNormativeName) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(9-ByteOrderMark OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
add_subdirectory(1-EllipsesJoinLF) | ||
add_subdirectory(2-EllipsesJoinCR) | ||
add_subdirectory(3-EllipsesJoinCRLF) | ||
add_subdirectory(4-Strings) | ||
add_subdirectory(5-CodePointInString) | ||
add_subdirectory(6-NormativeNameInString) | ||
add_subdirectory(7-InvalidCodePointInString) | ||
add_subdirectory(8-InvalidNormativeName) | ||
add_subdirectory(9-ByteOrderMark) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/1-SingleLine/1-EndOfLine/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(1-EndOfLine OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/1-SingleLine/2-SeparateLine/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(2-SeparateLine OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/1-SingleLine/3-AfterCommaSeparator/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(3-AfterCommaSeparator OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/1-SingleLine/4-BeforeHAI/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(4-BeforeHAI OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/1-SingleLine/5-AfterKTHXBYE/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(5-AfterKTHXBYE OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/1-SingleLine/6-IgnoreContinuation/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(6-IgnoreContinuation) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/1-SingleLine/7-IgnoreJoin/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(7-IgnoreJoin OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
add_subdirectory(1-EndOfLine) | ||
add_subdirectory(2-SeparateLine) | ||
add_subdirectory(3-AfterCommaSeparator) | ||
add_subdirectory(4-BeforeHAI) | ||
add_subdirectory(5-AfterKTHXBYE) | ||
add_subdirectory(6-IgnoreContinuation) | ||
add_subdirectory(7-IgnoreJoin) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/1-SeparateStartEndLines/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(1-SeparateStartEndLines OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/10-AfterKTHXBYE/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(10-AfterKTHXBYE OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/2-SeparateStartLineOnly/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(2-SeparateStartLineOnly OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/3-SeparateEndLineOnly/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(3-SeparateEndLineOnly OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/4-MustStartOnSeparateLine/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(4-MustStartOnSeparateLine) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/5-MustEndOnOwnLine/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(5-MustEndOnOwnLine) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/6-BeginAfterLineSeparator/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(6-BeginAfterLineSeparator OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/7-EndBeforeLineSeparator/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(7-EndBeforeLineSeparator OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/8-IgnoreEmbeddedBTW/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(8-IgnoreEmbeddedBTW OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/2-Comments/2-MultipleLine/9-BeforeHAI/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(9-BeforeHAI OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
add_subdirectory(1-SeparateStartEndLines) | ||
add_subdirectory(10-AfterKTHXBYE) | ||
add_subdirectory(2-SeparateStartLineOnly) | ||
add_subdirectory(3-SeparateEndLineOnly) | ||
add_subdirectory(4-MustStartOnSeparateLine) | ||
add_subdirectory(5-MustEndOnOwnLine) | ||
add_subdirectory(6-BeginAfterLineSeparator) | ||
add_subdirectory(7-EndBeforeLineSeparator) | ||
add_subdirectory(8-IgnoreEmbeddedBTW) | ||
add_subdirectory(9-BeforeHAI) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
add_subdirectory(1-SingleLine) | ||
add_subdirectory(2-MultipleLine) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(1-NilToBoolean OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(2-NilToInteger) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(3-NilToFloat) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(4-NilToString) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
add_subdirectory(1-NilToBoolean) | ||
add_subdirectory(2-NilToInteger) | ||
add_subdirectory(3-NilToFloat) | ||
add_subdirectory(4-NilToString) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/2-Boolean/1-BooleanImplicitCasts/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(1-BooleanImplicitCasts OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
add_subdirectory(1-BooleanImplicitCasts) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/3-Integer/1-NegativeValue/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(1-NegativeValue OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/3-Integer/2-MustHaveAdjacentHyphen/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(2-MustHaveAdjacentHyphen) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/3-Integer/3-ImplicitCasts/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(3-ImplicitCasts OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
add_subdirectory(1-NegativeValue) | ||
add_subdirectory(2-MustHaveAdjacentHyphen) | ||
add_subdirectory(3-ImplicitCasts) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/4-Float/1-OnlyOneDecimalPoint/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(1-OnlyOneDecimalPoint) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/4-Float/2-MustHaveAdjacentHyphen/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(2-MustHaveAdjacentHyphen) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/4-Float/3-ImplicitCasts/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(3-ImplicitCasts OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(4-Truncation OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
add_subdirectory(1-OnlyOneDecimalPoint) | ||
add_subdirectory(2-MustHaveAdjacentHyphen) | ||
add_subdirectory(3-ImplicitCasts) | ||
add_subdirectory(4-Truncation) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/5-String/1-Escapes/1-Newline/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(1-Newline OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/5-String/1-Escapes/2-Tab/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(2-Tab OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/5-String/1-Escapes/3-Bell/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(3-Bell OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/5-String/1-Escapes/4-DoubleQuote/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(4-DoubleQuote OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/5-String/1-Escapes/5-Colon/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(5-Colon OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
add_subdirectory(1-Newline) | ||
add_subdirectory(2-Tab) | ||
add_subdirectory(3-Bell) | ||
add_subdirectory(4-DoubleQuote) | ||
add_subdirectory(5-Colon) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/5-String/2-Syntax/1-IgnoreContinuation/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(1-IgnoreContinuation) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/5-String/2-Syntax/2-IgnoreJoins/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(2-IgnoreJoins OUTPUT test.out) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/5-String/2-Syntax/3-MustHaveClosingQuote/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
Add_LOL_TEST(3-MustHaveClosingQuote) |
2 changes: 2 additions & 0 deletions
2
test/1.2-Tests/3-Types/5-String/2-Syntax/4-IgnoreComments/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
INCLUDE(AddLolTest) | ||
ADD_LOL_TEST(4-IgnoreComments OUTPUT test.out) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
add_subdirectory(1-IgnoreContinuation) | ||
add_subdirectory(2-IgnoreJoins) | ||
add_subdirectory(3-MustHaveClosingQuote) | ||
add_subdirectory(4-IgnoreComments) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
add_subdirectory(1-Escapes) | ||
add_subdirectory(2-Syntax) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
add_subdirectory(1-Nil) | ||
add_subdirectory(2-Boolean) | ||
add_subdirectory(3-Integer) | ||
add_subdirectory(4-Float) | ||
add_subdirectory(5-String) |
Oops, something went wrong.