1 files modified
1 files added
| | |
| | | configure_file("cmake/options.h.in" "include/options.h" @ONLY) |
| | | configure_file("test_scripts/test1.vs" "test_scripts/test1.vs" @ONLY) |
| | | configure_file("test_scripts/test2.vs" "test_scripts/test2.vs" @ONLY) |
| | | configure_file("test_scripts/test2.vs" "test_scripts/test2.vs" @ONLY) |
| | | configure_file("test_scripts/function_test.vs" "test_scripts/function_test.vs" @ONLY) |
| | | |
| | | |
| | | |
| | | |
| | | include_directories(${CMAKE_BINARY_DIR}/include ${CMAKE_SOURCE_DIR}/src) |
| | | |
| New file |
| | |
| | | int $num = 123; |
| | | double $double = 12.3; |
| | | string $variable = "This is a string content with a number: 123"; |
| | | |
| | | string $variable2 = $variable; |
| | | |
| | | function test = (int $i) { |
| | | int $result = $i + 1; |
| | | } |
| | | |
| | | function increment = (int $i) int { |
| | | return $i + 1; |
| | | } |
| | | |
| | | |
| | | increment(1); |