├── .cproject ├── .gitignore ├── .project ├── .travis.yml ├── AUTHORS ├── COPYING ├── Debug ├── makefile ├── objects.mk ├── sources.mk └── src │ ├── expressions │ └── subdir.mk │ ├── statements │ ├── declarations │ │ └── subdir.mk │ └── subdir.mk │ ├── subdir.mk │ ├── types │ ├── specifiers │ │ └── subdir.mk │ └── subdir.mk │ └── variables │ └── subdir.mk ├── README.md ├── Release ├── makefile ├── objects.mk ├── sources.mk └── src │ ├── expressions │ └── subdir.mk │ ├── specifiers │ └── subdir.mk │ ├── statements │ ├── declarations │ │ └── subdir.mk │ └── subdir.mk │ ├── subdir.mk │ ├── types │ ├── specifiers │ │ └── subdir.mk │ └── subdir.mk │ └── variables │ └── subdir.mk ├── hello.nwt ├── makefile.defs ├── makefile.init ├── makefile.targets ├── src ├── alias_resolution.h ├── array.cpp ├── array.h ├── assert.cpp ├── assert.h ├── assignment_type.h ├── builtins.cpp ├── builtins.h ├── defaults.cpp ├── defaults.h ├── dimension.h ├── driver.cpp ├── driver.h ├── error.cpp ├── error.h ├── execution_context.cpp ├── execution_context.h ├── execution_context_list.cpp ├── execution_context_list.h ├── expressions │ ├── arithmetic_expression.cpp │ ├── arithmetic_expression.h │ ├── binary_expression.cpp │ ├── binary_expression.h │ ├── close_expression.cpp │ ├── close_expression.h │ ├── comparison_expression.cpp │ ├── comparison_expression.h │ ├── constant_expression.cpp │ ├── constant_expression.h │ ├── default_value_expression.cpp │ ├── default_value_expression.h │ ├── expression.cpp │ ├── expression.h │ ├── function_expression.cpp │ ├── function_expression.h │ ├── get_byte_expression.cpp │ ├── get_byte_expression.h │ ├── invoke_expression.cpp │ ├── invoke_expression.h │ ├── logic_expression.cpp │ ├── logic_expression.h │ ├── open_expression.cpp │ ├── open_expression.h │ ├── put_byte_expression.cpp │ ├── put_byte_expression.h │ ├── unary_expression.cpp │ ├── unary_expression.h │ ├── using_expression.cpp │ ├── using_expression.h │ ├── variable_expression.cpp │ ├── variable_expression.h │ ├── with_expression.cpp │ └── with_expression.h ├── function.cpp ├── function.h ├── function_variant.cpp ├── function_variant.h ├── indent.cpp ├── indent.h ├── lexer.l ├── linked_list.h ├── location.hh ├── match.cpp ├── match.h ├── member_instantiation.cpp ├── member_instantiation.h ├── modifier.h ├── namespace_qualifier.h ├── newt.cpp ├── parameter.h ├── parser.yy ├── position.hh ├── record.cpp ├── record.h ├── result.h ├── search_type.h ├── statements │ ├── assignment_statement.cpp │ ├── assignment_statement.h │ ├── declarations │ │ ├── array_declaration_statement.cpp │ │ ├── array_declaration_statement.h │ │ ├── complex_instantiation_statement.cpp │ │ ├── complex_instantiation_statement.h │ │ ├── declaration_statement.cpp │ │ ├── declaration_statement.h │ │ ├── function_declaration_statement.cpp │ │ ├── function_declaration_statement.h │ │ ├── inferred_declaration_statement.cpp │ │ ├── inferred_declaration_statement.h │ │ ├── maybe_declaration_statement.cpp │ │ ├── maybe_declaration_statement.h │ │ ├── nested_declaration_statement.cpp │ │ ├── nested_declaration_statement.h │ │ ├── primitive_declaration_statement.cpp │ │ ├── primitive_declaration_statement.h │ │ ├── record_declaration_statement.cpp │ │ ├── record_declaration_statement.h │ │ ├── sum_declaration_statement.cpp │ │ ├── sum_declaration_statement.h │ │ ├── type_alias_declaration_statement.cpp │ │ ├── type_alias_declaration_statement.h │ │ ├── unit_declaration_statement.cpp │ │ └── unit_declaration_statement.h │ ├── exit_statement.cpp │ ├── exit_statement.h │ ├── for_statement.cpp │ ├── for_statement.h │ ├── foreach_statement.cpp │ ├── foreach_statement.h │ ├── if_statement.cpp │ ├── if_statement.h │ ├── invoke_statement.cpp │ ├── invoke_statement.h │ ├── match_statement.cpp │ ├── match_statement.h │ ├── print_statement.cpp │ ├── print_statement.h │ ├── return_statement.cpp │ ├── return_statement.h │ ├── statement.h │ ├── statement_block.cpp │ ├── statement_block.h │ ├── while_statement.cpp │ └── while_statement.h ├── sum.cpp ├── sum.h ├── symbol.cpp ├── symbol.h ├── symbol_context.cpp ├── symbol_context.h ├── symbol_table.cpp ├── symbol_table.h ├── type.cpp ├── type.h ├── type_table.cpp ├── type_table.h ├── types │ ├── alias_definition.cpp │ ├── alias_definition.h │ ├── analysis_result.h │ ├── array_type.cpp │ ├── array_type.h │ ├── complex_type.cpp │ ├── complex_type.h │ ├── function_type.cpp │ ├── function_type.h │ ├── maybe_type.cpp │ ├── maybe_type.h │ ├── placeholder_type.h │ ├── primitive_type.cpp │ ├── primitive_type.h │ ├── record_type.cpp │ ├── record_type.h │ ├── specifiers │ │ ├── array_type_specifier.cpp │ │ ├── array_type_specifier.h │ │ ├── complex_type_specifier.cpp │ │ ├── complex_type_specifier.h │ │ ├── function_declaration.cpp │ │ ├── function_declaration.h │ │ ├── function_type_specifier.cpp │ │ ├── function_type_specifier.h │ │ ├── maybe_type_specifier.cpp │ │ ├── maybe_type_specifier.h │ │ ├── nested_type_specifier.cpp │ │ ├── nested_type_specifier.h │ │ ├── primitive_type_specifier.cpp │ │ ├── primitive_type_specifier.h │ │ ├── record_type_specifier.cpp │ │ ├── record_type_specifier.h │ │ ├── sum_type_specifier.cpp │ │ ├── sum_type_specifier.h │ │ ├── type_specifier.h │ │ ├── variant_function_specifier.cpp │ │ └── variant_function_specifier.h │ ├── sum_type.cpp │ ├── sum_type.h │ ├── type_definition.h │ ├── unit_type.cpp │ ├── unit_type.h │ ├── variant_function_type.cpp │ └── variant_function_type.h ├── unit.cpp ├── unit.h ├── utils.cpp ├── utils.h ├── variables │ ├── array_variable.cpp │ ├── array_variable.h │ ├── basic_variable.cpp │ ├── basic_variable.h │ ├── member_variable.cpp │ ├── member_variable.h │ ├── variable.cpp │ └── variable.h ├── version.cpp └── version.h └── tests ├── files ├── a.in ├── abc.in └── abc.inout ├── includes ├── bad_external_import.nwt ├── io.nwt ├── list.nwt ├── nested.nwt ├── sub │ └── trivial.nwt └── trivial.nwt ├── reference ├── t0000 ├── t0001 ├── t0002 ├── t0003 ├── t0004 ├── t0005 ├── t0006 ├── t0007 ├── t0008 ├── t0009 ├── t0010 ├── t0011 ├── t0012 ├── t0013 ├── t0014 ├── t0015 ├── t0016 ├── t0017 ├── t0018 ├── t0019 ├── t0020 ├── t0030 ├── t0031 ├── t0040 ├── t0041 ├── t0042 ├── t0043 ├── t0044 ├── t0045 ├── t0046 ├── t0047 ├── t0048 ├── t0050 ├── t0051 ├── t0052 ├── t0053 ├── t0054 ├── t0060 ├── t0061 ├── t0062 ├── t0063 ├── t0064 ├── t0065 ├── t0066 ├── t0067 ├── t0100 ├── t0101 ├── t0102 ├── t0103 ├── t0104 ├── t0105 ├── t0106 ├── t0107 ├── t0109 ├── t0110 ├── t0111 ├── t0112 ├── t0113 ├── t0114 ├── t0115 ├── t0240 ├── t0241 ├── t0242 ├── t0300 ├── t0301 ├── t0302 ├── t0303 ├── t0304 ├── t0350 ├── t0351 ├── t0353 ├── t0400 ├── t0500 ├── t0501 ├── t0502 ├── t0503 ├── t0504 ├── t0505 ├── t10000 ├── t10001 ├── t10002 ├── t10003 ├── t10004 ├── t10005 ├── t10006 ├── t1001 ├── t1002 ├── t1003 ├── t1004 ├── t1005 ├── t1006 ├── t1007 ├── t1008 ├── t1009 ├── t1010 ├── t10100 ├── t10101 ├── t10102 ├── t10103 ├── t10104 ├── t10105 ├── t10106 ├── t10107 ├── t10108 ├── t10109 ├── t1011 ├── t10110 ├── t10111 ├── t10112 ├── t10113 ├── t10114 ├── t1018 ├── t1019 ├── t1020 ├── t1021 ├── t1022 ├── t1023 ├── t1024 ├── t1030 ├── t1031 ├── t1032 ├── t1033 ├── t1034 ├── t1035 ├── t1040 ├── t1041 ├── t1042 ├── t1043 ├── t1044 ├── t1050 ├── t1051 ├── t1100 ├── t11000 ├── t1101 ├── t1102 ├── t1103 ├── t1104 ├── t1105 ├── t1106 ├── t1107 ├── t1108 ├── t1109 ├── t1110 ├── t11100 ├── t1111 ├── t1112 ├── t1113 ├── t1114 ├── t1115 ├── t1116 ├── t1117 ├── t1118 ├── t1119 ├── t1120 ├── t11200 ├── t1121 ├── t1122 ├── t1123 ├── t1124 ├── t1125 ├── t11300 ├── t12000 ├── t12001 ├── t1218 ├── t1219 ├── t1220 ├── t1221 ├── t1222 ├── t1223 ├── t1224 ├── t1225 ├── t1226 ├── t1227 ├── t1228 ├── t1229 ├── t1230 ├── t1231 ├── t1232 ├── t1233 ├── t1234 ├── t1235 ├── t1236 ├── t1237 ├── t1238 ├── t1239 ├── t1240 ├── t1241 ├── t1242 ├── t1243 ├── t1244 ├── t1245 ├── t1246 ├── t1247 ├── t1248 ├── t1249 ├── t1250 ├── t1251 ├── t1252 ├── t1253 ├── t1254 ├── t1255 ├── t1256 ├── t1257 ├── t1258 ├── t1259 ├── t1260 ├── t1261 ├── t1262 ├── t1263 ├── t1264 ├── t1265 ├── t1266 ├── t1267 ├── t1268 ├── t1269 ├── t1270 ├── t1271 ├── t1272 ├── t1273 ├── t1274 ├── t1275 ├── t1276 ├── t1277 ├── t1278 ├── t1279 ├── t1280 ├── t1281 ├── t1282 ├── t1283 ├── t1284 ├── t1285 ├── t1286 ├── t1287 ├── t1288 ├── t1289 ├── t1290 ├── t1291 ├── t1292 ├── t1293 ├── t1294 ├── t1295 ├── t1296 ├── t1297 ├── t1298 ├── t1299 ├── t1411 ├── t1412 ├── t1413 ├── t1414 ├── t1415 ├── t1416 ├── t1417 ├── t1418 ├── t1419 ├── t1420 ├── t1421 ├── t1422 ├── t1423 ├── t1424 ├── t1425 ├── t1426 ├── t1427 ├── t1428 ├── t1429 ├── t1500 ├── t1501 ├── t1502 ├── t1503 ├── t1504 ├── t1505 ├── t1506 ├── t1507 ├── t1508 ├── t1509 ├── t1510 ├── t1700 ├── t1702 ├── t1703 ├── t1704 ├── t1705 ├── t1706 ├── t1708 ├── t1711 ├── t1712 ├── t1713 ├── t1714 ├── t1715 ├── t1718 ├── t1719 ├── t1720 ├── t1721 ├── t1800 ├── t1801 ├── t1802 ├── t1803 ├── t1804 ├── t1805 ├── t1900 ├── t2000 ├── t2002 ├── t2003 ├── t2004 ├── t2008 ├── t2010 ├── t2011 ├── t2012 ├── t2013 ├── t2014 ├── t2015 ├── t2016 ├── t2017 ├── t2018 ├── t2019 ├── t2020 ├── t2021 ├── t2022 ├── t2023 ├── t2024 ├── t2025 ├── t2026 ├── t2027 ├── t2028 ├── t2030 ├── t2031 ├── t2032 ├── t2033 ├── t2034 ├── t2035 ├── t2036 ├── t2037 ├── t2038 ├── t2039 ├── t2040 ├── t2041 ├── t2042 ├── t2043 ├── t2044 ├── t2045 ├── t2046 ├── t2047 ├── t2050 ├── t2051 ├── t2052 ├── t2053 ├── t2060 ├── t2061 ├── t2062 ├── t2063 ├── t2064 ├── t2065 ├── t2066 ├── t2067 ├── t2070 ├── t2071 ├── t2072 ├── t2073 ├── t2075 ├── t2076 ├── t2077 ├── t2078 ├── t2080 ├── t2081 ├── t2082 ├── t2083 ├── t2084 ├── t2085 ├── t2086 ├── t2087 ├── t2088 ├── t2089 ├── t2090 ├── t2100 ├── t2101 ├── t2200 ├── t2201 ├── t2800 ├── t2802 ├── t2803 ├── t2900 ├── t3000 ├── t3001 ├── t3002 ├── t3003 ├── t3004 ├── t3005 ├── t3010 ├── t3011 ├── t3012 ├── t3020 ├── t3021 ├── t3022 ├── t3023 ├── t3024 ├── t3025 ├── t3026 ├── t3027 ├── t3028 ├── t3029 ├── t3030 ├── t3031 ├── t3032 ├── t3033 ├── t3100 ├── t3101 ├── t3105 ├── t3124 ├── t3125 ├── t3126 ├── t3127 ├── t3130 ├── t3131 ├── t3132 ├── t3133 ├── t3134 ├── t3135 ├── t3136 ├── t4000 ├── t4001 ├── t4002 ├── t4003 ├── t5000 ├── t5001 ├── t5002 ├── t5003 ├── t5004 ├── t5005 ├── t5006 ├── t5007 ├── t5008 ├── t5009 ├── t5010 ├── t5011 ├── t5012 ├── t5013 ├── t5014 ├── t5015 ├── t5016 ├── t5017 ├── t5020 ├── t5021 ├── t5022 ├── t5040 ├── t5041 ├── t5042 ├── t5043 ├── t5044 ├── t5045 ├── t5046 ├── t5047 ├── t5050 ├── t5051 ├── t5052 ├── t5053 ├── t5062 ├── t5063 ├── t5064 ├── t5065 ├── t5067 ├── t5068 ├── t5069 ├── t5070 ├── t5100 ├── t5101 ├── t5102 ├── t5103 ├── t5104 ├── t5105 ├── t5106 ├── t5107 ├── t5108 ├── t5109 ├── t5110 ├── t5111 ├── t5112 ├── t5121 ├── t5122 ├── t5123 ├── t5124 ├── t5125 ├── t5126 ├── t5127 ├── t5140 ├── t5160 ├── t5161 ├── t5162 ├── t5163 ├── t5166 ├── t5167 ├── t5168 ├── t5169 ├── t5170 ├── t5171 ├── t5172 ├── t6000 ├── t6001 ├── t6002 ├── t6003 ├── t6004 ├── t6005 ├── t6006 ├── t6007 ├── t6008 ├── t6009 ├── t6010 ├── t6011 ├── t6012 ├── t6015 ├── t6016 ├── t6017 ├── t6018 ├── t6019 ├── t6025 ├── t6026 ├── t6027 ├── t6028 ├── t6029 ├── t6030 ├── t6031 ├── t6032 ├── t6033 ├── t6034 ├── t6040 ├── t6050 ├── t6051 ├── t6052 ├── t6053 ├── t6054 ├── t6055 ├── t6056 ├── t6057 ├── t6059 ├── t6060 ├── t6061 ├── t6062 ├── t6063 ├── t6064 ├── t6065 ├── t6066 ├── t6067 ├── t6100 ├── t6101 ├── t6102 ├── t6103 ├── t6104 ├── t6105 ├── t6106 ├── t6107 ├── t6108 ├── t6109 ├── t6110 ├── t6111 ├── t6112 ├── t6113 ├── t6114 ├── t6115 ├── t6134 ├── t6150 ├── t6151 ├── t6200 ├── t6201 ├── t6202 ├── t6203 ├── t6204 ├── t6205 ├── t6206 ├── t6207 ├── t6208 ├── t6209 ├── t6210 ├── t6300 ├── t6301 ├── t6302 ├── t6303 ├── t6304 ├── t6305 ├── t6306 ├── t6307 ├── t6308 ├── t6309 ├── t6310 ├── t6311 ├── t6312 ├── t6313 ├── t6314 ├── t6350 ├── t6351 ├── t6400 ├── t6401 ├── t7000 ├── t7001 ├── t7002 ├── t7003 ├── t7004 ├── t7005 ├── t7006 ├── t7007 ├── t7008 ├── t7009 ├── t7010 ├── t7011 ├── t7012 ├── t7013 ├── t7014 ├── t7015 ├── t7016 ├── t7017 ├── t7018 ├── t7019 ├── t7020 ├── t7021 ├── t7022 ├── t7023 ├── t7024 ├── t7025 ├── t7026 ├── t7027 ├── t7030 ├── t7031 ├── t7032 ├── t7033 ├── t7034 ├── t7100 ├── t7200 ├── t7201 ├── t7300 ├── t7301 ├── t7302 ├── t7314 ├── t7318 ├── t7322 ├── t7330 ├── t7331 ├── t7333 ├── t7334 ├── t7418 ├── t7420 ├── t7421 ├── t7422 ├── t7430 ├── t7431 ├── t7432 ├── t7433 ├── t7434 ├── t8000 ├── t8001 ├── t8002 ├── t8003 ├── t8010 ├── t8011 ├── t8012 ├── t8100 ├── t8101 ├── t8102 ├── t8103 ├── t9000 ├── t9001 ├── t9002 ├── t9003 ├── t9004 ├── t9020 ├── t9030 ├── t9031 ├── t9032 ├── t9033 ├── t9100 ├── t9101 ├── t9102 ├── t9103 └── t9104 ├── t0000.nwt ├── t0001.nwt ├── t0002.nwt ├── t0003.nwt ├── t0004.nwt ├── t0005.nwt ├── t0006.nwt ├── t0007.nwt ├── t0008.nwt ├── t0009.nwt ├── t0010.nwt ├── t0011.nwt ├── t0012.nwt ├── t0013.nwt ├── t0014.nwt ├── t0015.nwt ├── t0016.nwt ├── t0017.nwt ├── t0018.nwt ├── t0019.nwt ├── t0020.nwt ├── t0030.nwt ├── t0031.nwt ├── t0040.nwt ├── t0041.nwt ├── t0042.nwt ├── t0043.nwt ├── t0044.nwt ├── t0045.nwt ├── t0046.nwt ├── t0047.nwt ├── t0048.nwt ├── t0050.nwt ├── t0051.nwt ├── t0052.nwt ├── t0053.nwt ├── t0054.nwt ├── t0060.nwt ├── t0061.nwt ├── t0062.nwt ├── t0063.nwt ├── t0064.nwt ├── t0065.nwt ├── t0066.nwt ├── t0067.nwt ├── t0100.nwt ├── t0101.nwt ├── t0102.nwt ├── t0103.nwt ├── t0104.nwt ├── t0105.nwt ├── t0106.nwt ├── t0107.nwt ├── t0109.nwt ├── t0110.nwt ├── t0111.nwt ├── t0112.nwt ├── t0113.nwt ├── t0114.nwt ├── t0115.nwt ├── t0240.nwt ├── t0241.nwt ├── t0242.nwt ├── t0300.nwt ├── t0301.nwt ├── t0302.nwt ├── t0303.nwt ├── t0304.nwt ├── t0350.nwt ├── t0351.nwt ├── t0353.nwt ├── t0400.nwt ├── t0500.nwt ├── t0501.nwt ├── t0502.nwt ├── t0503.nwt ├── t0504.nwt ├── t0505.nwt ├── t10000.nwt ├── t10001.nwt ├── t10002.nwt ├── t10003.nwt ├── t10004.nwt ├── t10005.nwt ├── t10006.nwt ├── t1001.nwt ├── t1002.nwt ├── t1003.nwt ├── t1004.nwt ├── t1005.nwt ├── t1006.nwt ├── t1007.nwt ├── t1008.nwt ├── t1009.nwt ├── t1010.nwt ├── t10100.nwt ├── t10101.nwt ├── t10102.nwt ├── t10103.nwt ├── t10104.nwt ├── t10105.nwt ├── t10106.nwt ├── t10107.nwt ├── t10108.nwt ├── t10109.nwt ├── t1011.nwt ├── t10110.nwt ├── t10111.nwt ├── t10112.nwt ├── t10113.nwt ├── t10114.nwt ├── t1018.nwt ├── t1019.nwt ├── t1020.nwt ├── t1021.nwt ├── t1022.nwt ├── t1023.nwt ├── t1024.nwt ├── t1030.nwt ├── t1031.nwt ├── t1032.nwt ├── t1033.nwt ├── t1034.nwt ├── t1035.nwt ├── t1040.nwt ├── t1041.nwt ├── t1042.nwt ├── t1043.nwt ├── t1044.nwt ├── t1050.nwt ├── t1051.nwt ├── t1100.nwt ├── t11000.nwt ├── t1101.nwt ├── t1102.nwt ├── t1103.nwt ├── t1104.nwt ├── t1105.nwt ├── t1106.nwt ├── t1107.nwt ├── t1108.nwt ├── t1109.nwt ├── t1110.nwt ├── t11100.nwt ├── t1111.nwt ├── t1112.nwt ├── t1113.nwt ├── t1114.nwt ├── t1115.nwt ├── t1116.nwt ├── t1117.nwt ├── t1118.nwt ├── t1119.nwt ├── t1120.nwt ├── t11200.nwt ├── t1121.nwt ├── t1122.nwt ├── t11300.nwt ├── t12000.nwt ├── t12001.nwt ├── t1218.nwt ├── t1219.nwt ├── t1220.nwt ├── t1221.nwt ├── t1222.nwt ├── t1223.nwt ├── t1224.nwt ├── t1225.nwt ├── t1226.nwt ├── t1227.nwt ├── t1228.nwt ├── t1229.nwt ├── t1230.nwt ├── t1231.nwt ├── t1232.nwt ├── t1233.nwt ├── t1234.nwt ├── t1235.nwt ├── t1236.nwt ├── t1237.nwt ├── t1238.nwt ├── t1239.nwt ├── t1240.nwt ├── t1241.nwt ├── t1242.nwt ├── t1243.nwt ├── t1244.nwt ├── t1245.nwt ├── t1246.nwt ├── t1247.nwt ├── t1248.nwt ├── t1249.nwt ├── t1250.nwt ├── t1251.nwt ├── t1252.nwt ├── t1253.nwt ├── t1254.nwt ├── t1255.nwt ├── t1256.nwt ├── t1257.nwt ├── t1258.nwt ├── t1259.nwt ├── t1260.nwt ├── t1261.nwt ├── t1262.nwt ├── t1263.nwt ├── t1264.nwt ├── t1265.nwt ├── t1266.nwt ├── t1267.nwt ├── t1268.nwt ├── t1269.nwt ├── t1270.nwt ├── t1271.nwt ├── t1272.nwt ├── t1273.nwt ├── t1274.nwt ├── t1275.nwt ├── t1276.nwt ├── t1277.nwt ├── t1278.nwt ├── t1279.nwt ├── t1280.nwt ├── t1281.nwt ├── t1282.nwt ├── t1283.nwt ├── t1284.nwt ├── t1285.nwt ├── t1286.nwt ├── t1287.nwt ├── t1288.nwt ├── t1289.nwt ├── t1290.nwt ├── t1291.nwt ├── t1292.nwt ├── t1293.nwt ├── t1294.nwt ├── t1295.nwt ├── t1296.nwt ├── t1297.nwt ├── t1298.nwt ├── t1299.nwt ├── t1411.nwt ├── t1412.nwt ├── t1413.nwt ├── t1414.nwt ├── t1415.nwt ├── t1416.nwt ├── t1417.nwt ├── t1418.nwt ├── t1419.nwt ├── t1420.nwt ├── t1421.nwt ├── t1422.nwt ├── t1423.nwt ├── t1424.nwt ├── t1425.nwt ├── t1426.nwt ├── t1427.nwt ├── t1428.nwt ├── t1429.nwt ├── t1500.nwt ├── t1501.nwt ├── t1502.nwt ├── t1503.nwt ├── t1504.nwt ├── t1505.nwt ├── t1506.nwt ├── t1507.nwt ├── t1508.nwt ├── t1509.nwt ├── t1510.nwt ├── t1700.nwt ├── t1702.nwt ├── t1703.nwt ├── t1704.nwt ├── t1705.nwt ├── t1706.nwt ├── t1708.nwt ├── t1711.nwt ├── t1712.nwt ├── t1713.nwt ├── t1714.nwt ├── t1715.nwt ├── t1718.nwt ├── t1719.nwt ├── t1720.nwt ├── t1721.nwt ├── t1800.nwt ├── t1801.nwt ├── t1802.nwt ├── t1803.nwt ├── t1804.nwt ├── t1805.nwt ├── t1900.nwt ├── t2000.nwt ├── t2002.nwt ├── t2003.nwt ├── t2004.nwt ├── t2008.nwt ├── t2010.nwt ├── t2011.nwt ├── t2012.nwt ├── t2013.nwt ├── t2014.nwt ├── t2015.nwt ├── t2016.nwt ├── t2017.nwt ├── t2018.nwt ├── t2019.nwt ├── t2020.nwt ├── t2021.nwt ├── t2022.nwt ├── t2023.nwt ├── t2024.nwt ├── t2025.nwt ├── t2026.nwt ├── t2027.nwt ├── t2028.nwt ├── t2030.nwt ├── t2031.nwt ├── t2032.nwt ├── t2033.nwt ├── t2034.nwt ├── t2035.nwt ├── t2036.nwt ├── t2037.nwt ├── t2038.nwt ├── t2039.nwt ├── t2040.nwt ├── t2041.nwt ├── t2042.nwt ├── t2043.nwt ├── t2044.nwt ├── t2045.nwt ├── t2046.nwt ├── t2047.nwt ├── t2050.nwt ├── t2051.nwt ├── t2052.nwt ├── t2053.nwt ├── t2060.nwt ├── t2061.nwt ├── t2062.nwt ├── t2063.nwt ├── t2064.nwt ├── t2065.nwt ├── t2066.nwt ├── t2067.nwt ├── t2070.nwt ├── t2071.nwt ├── t2072.nwt ├── t2073.nwt ├── t2075.nwt ├── t2076.nwt ├── t2077.nwt ├── t2078.nwt ├── t2080.nwt ├── t2081.nwt ├── t2082.nwt ├── t2083.nwt ├── t2084.nwt ├── t2085.nwt ├── t2086.nwt ├── t2087.nwt ├── t2088.nwt ├── t2089.nwt ├── t2090.nwt ├── t2100.nwt ├── t2101.nwt ├── t2200.nwt ├── t2201.nwt ├── t2800.nwt ├── t2802.nwt ├── t2803.nwt ├── t2900.nwt ├── t3000.nwt ├── t3001.nwt ├── t3002.nwt ├── t3003.nwt ├── t3004.nwt ├── t3005.nwt ├── t3010.nwt ├── t3011.nwt ├── t3012.nwt ├── t3020.nwt ├── t3021.nwt ├── t3022.nwt ├── t3023.nwt ├── t3024.nwt ├── t3025.nwt ├── t3026.nwt ├── t3027.nwt ├── t3028.nwt ├── t3029.nwt ├── t3030.nwt ├── t3031.nwt ├── t3032.nwt ├── t3033.nwt ├── t3100.nwt ├── t3101.nwt ├── t3105.nwt ├── t3124.nwt ├── t3125.nwt ├── t3126.nwt ├── t3127.nwt ├── t3130.nwt ├── t3131.nwt ├── t3132.nwt ├── t3133.nwt ├── t3134.nwt ├── t3135.nwt ├── t3136.nwt ├── t4000.nwt ├── t4001.nwt ├── t4002.nwt ├── t4003.nwt ├── t5000.nwt ├── t5001.nwt ├── t5002.nwt ├── t5003.nwt ├── t5004.nwt ├── t5005.nwt ├── t5006.nwt ├── t5007.nwt ├── t5008.nwt ├── t5009.nwt ├── t5010.nwt ├── t5011.nwt ├── t5012.nwt ├── t5013.nwt ├── t5014.nwt ├── t5015.nwt ├── t5016.nwt ├── t5017.nwt ├── t5020.nwt ├── t5021.nwt ├── t5022.nwt ├── t5040.nwt ├── t5041.nwt ├── t5042.nwt ├── t5043.nwt ├── t5044.nwt ├── t5045.nwt ├── t5046.nwt ├── t5047.nwt ├── t5050.nwt ├── t5051.nwt ├── t5052.nwt ├── t5053.nwt ├── t5062.nwt ├── t5063.nwt ├── t5064.nwt ├── t5065.nwt ├── t5067.nwt ├── t5068.nwt ├── t5069.nwt ├── t5070.nwt ├── t5100.nwt ├── t5101.nwt ├── t5102.nwt ├── t5103.nwt ├── t5104.nwt ├── t5105.nwt ├── t5106.nwt ├── t5107.nwt ├── t5108.nwt ├── t5109.nwt ├── t5110.nwt ├── t5111.nwt ├── t5112.nwt ├── t5121.nwt ├── t5122.nwt ├── t5123.nwt ├── t5124.nwt ├── t5125.nwt ├── t5126.nwt ├── t5127.nwt ├── t5140.nwt ├── t5160.nwt ├── t5161.nwt ├── t5162.nwt ├── t5163.nwt ├── t5166.nwt ├── t5167.nwt ├── t5168.nwt ├── t5169.nwt ├── t5170.nwt ├── t5171.nwt ├── t5172.nwt ├── t6000.nwt ├── t6001.nwt ├── t6002.nwt ├── t6003.nwt ├── t6004.nwt ├── t6005.nwt ├── t6006.nwt ├── t6007.nwt ├── t6008.nwt ├── t6009.nwt ├── t6010.nwt ├── t6011.nwt ├── t6012.nwt ├── t6015.nwt ├── t6016.nwt ├── t6017.nwt ├── t6018.nwt ├── t6019.nwt ├── t6025.nwt ├── t6026.nwt ├── t6027.nwt ├── t6028.nwt ├── t6029.nwt ├── t6030.nwt ├── t6031.nwt ├── t6032.nwt ├── t6033.nwt ├── t6034.nwt ├── t6040.nwt ├── t6050.nwt ├── t6051.nwt ├── t6052.nwt ├── t6053.nwt ├── t6054.nwt ├── t6055.nwt ├── t6056.nwt ├── t6057.nwt ├── t6059.nwt ├── t6060.nwt ├── t6061.nwt ├── t6062.nwt ├── t6063.nwt ├── t6064.nwt ├── t6065.nwt ├── t6066.nwt ├── t6067.nwt ├── t6100.nwt ├── t6101.nwt ├── t6102.nwt ├── t6103.nwt ├── t6104.nwt ├── t6105.nwt ├── t6106.nwt ├── t6107.nwt ├── t6108.nwt ├── t6109.nwt ├── t6110.nwt ├── t6111.nwt ├── t6112.nwt ├── t6113.nwt ├── t6114.nwt ├── t6115.nwt ├── t6134.nwt ├── t6150.nwt ├── t6151.nwt ├── t6200.nwt ├── t6201.nwt ├── t6202.nwt ├── t6203.nwt ├── t6204.nwt ├── t6205.nwt ├── t6206.nwt ├── t6207.nwt ├── t6208.nwt ├── t6209.nwt ├── t6210.nwt ├── t6300.nwt ├── t6301.nwt ├── t6302.nwt ├── t6303.nwt ├── t6304.nwt ├── t6305.nwt ├── t6306.nwt ├── t6307.nwt ├── t6308.nwt ├── t6309.nwt ├── t6310.nwt ├── t6311.nwt ├── t6312.nwt ├── t6313.nwt ├── t6314.nwt ├── t6350.nwt ├── t6351.nwt ├── t6400.nwt ├── t6401.nwt ├── t7000.nwt ├── t7001.nwt ├── t7002.nwt ├── t7003.nwt ├── t7004.nwt ├── t7005.nwt ├── t7006.nwt ├── t7007.nwt ├── t7008.nwt ├── t7009.nwt ├── t7010.nwt ├── t7011.nwt ├── t7012.nwt ├── t7013.nwt ├── t7014.nwt ├── t7015.nwt ├── t7016.nwt ├── t7017.nwt ├── t7018.nwt ├── t7019.nwt ├── t7020.nwt ├── t7021.nwt ├── t7022.nwt ├── t7023.nwt ├── t7024.nwt ├── t7025.nwt ├── t7026.nwt ├── t7027.nwt ├── t7100.nwt ├── t7200.nwt ├── t7201.nwt ├── t7300.nwt ├── t7301.nwt ├── t7302.nwt ├── t7314.nwt ├── t7318.nwt ├── t7322.nwt ├── t7330.nwt ├── t7331.nwt ├── t7333.nwt ├── t7334.nwt ├── t7418.nwt ├── t7420.nwt ├── t7421.nwt ├── t7422.nwt ├── t7430.nwt ├── t7431.nwt ├── t7432.nwt ├── t7433.nwt ├── t7434.nwt ├── t8000.nwt ├── t8001.nwt ├── t8002.nwt ├── t8003.nwt ├── t8010.nwt ├── t8011.nwt ├── t8012.nwt ├── t8100.nwt ├── t8101.nwt ├── t8102.nwt ├── t8103.nwt ├── t9000.nwt ├── t9001.nwt ├── t9002.nwt ├── t9003.nwt ├── t9004.nwt ├── t9020.nwt ├── t9030.nwt ├── t9031.nwt ├── t9032.nwt ├── t9033.nwt ├── t9100.nwt ├── t9101.nwt ├── t9102.nwt ├── t9103.nwt └── t9104.nwt /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/.project -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/COPYING -------------------------------------------------------------------------------- /Debug/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/Debug/makefile -------------------------------------------------------------------------------- /Debug/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/Debug/objects.mk -------------------------------------------------------------------------------- /Debug/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/Debug/sources.mk -------------------------------------------------------------------------------- /Debug/src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/Debug/src/subdir.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/README.md -------------------------------------------------------------------------------- /Release/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/Release/makefile -------------------------------------------------------------------------------- /Release/objects.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/Release/objects.mk -------------------------------------------------------------------------------- /Release/sources.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/Release/sources.mk -------------------------------------------------------------------------------- /Release/src/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/Release/src/subdir.mk -------------------------------------------------------------------------------- /hello.nwt: -------------------------------------------------------------------------------- 1 | print("Welcome to newt!") -------------------------------------------------------------------------------- /makefile.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/makefile.defs -------------------------------------------------------------------------------- /makefile.init: -------------------------------------------------------------------------------- 1 | .DEFAULT_GOAL := all -------------------------------------------------------------------------------- /makefile.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/makefile.targets -------------------------------------------------------------------------------- /src/alias_resolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/alias_resolution.h -------------------------------------------------------------------------------- /src/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/array.cpp -------------------------------------------------------------------------------- /src/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/array.h -------------------------------------------------------------------------------- /src/assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/assert.cpp -------------------------------------------------------------------------------- /src/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/assert.h -------------------------------------------------------------------------------- /src/assignment_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/assignment_type.h -------------------------------------------------------------------------------- /src/builtins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/builtins.cpp -------------------------------------------------------------------------------- /src/builtins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/builtins.h -------------------------------------------------------------------------------- /src/defaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/defaults.cpp -------------------------------------------------------------------------------- /src/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/defaults.h -------------------------------------------------------------------------------- /src/dimension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/dimension.h -------------------------------------------------------------------------------- /src/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/driver.cpp -------------------------------------------------------------------------------- /src/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/driver.h -------------------------------------------------------------------------------- /src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/error.cpp -------------------------------------------------------------------------------- /src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/error.h -------------------------------------------------------------------------------- /src/function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/function.cpp -------------------------------------------------------------------------------- /src/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/function.h -------------------------------------------------------------------------------- /src/function_variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/function_variant.h -------------------------------------------------------------------------------- /src/indent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/indent.cpp -------------------------------------------------------------------------------- /src/indent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/indent.h -------------------------------------------------------------------------------- /src/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/lexer.l -------------------------------------------------------------------------------- /src/linked_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/linked_list.h -------------------------------------------------------------------------------- /src/location.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/location.hh -------------------------------------------------------------------------------- /src/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/match.cpp -------------------------------------------------------------------------------- /src/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/match.h -------------------------------------------------------------------------------- /src/modifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/modifier.h -------------------------------------------------------------------------------- /src/newt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/newt.cpp -------------------------------------------------------------------------------- /src/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/parameter.h -------------------------------------------------------------------------------- /src/parser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/parser.yy -------------------------------------------------------------------------------- /src/position.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/position.hh -------------------------------------------------------------------------------- /src/record.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/record.cpp -------------------------------------------------------------------------------- /src/record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/record.h -------------------------------------------------------------------------------- /src/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/result.h -------------------------------------------------------------------------------- /src/search_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/search_type.h -------------------------------------------------------------------------------- /src/sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/sum.cpp -------------------------------------------------------------------------------- /src/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/sum.h -------------------------------------------------------------------------------- /src/symbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/symbol.cpp -------------------------------------------------------------------------------- /src/symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/symbol.h -------------------------------------------------------------------------------- /src/symbol_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/symbol_context.cpp -------------------------------------------------------------------------------- /src/symbol_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/symbol_context.h -------------------------------------------------------------------------------- /src/symbol_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/symbol_table.cpp -------------------------------------------------------------------------------- /src/symbol_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/symbol_table.h -------------------------------------------------------------------------------- /src/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/type.cpp -------------------------------------------------------------------------------- /src/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/type.h -------------------------------------------------------------------------------- /src/type_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/type_table.cpp -------------------------------------------------------------------------------- /src/type_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/type_table.h -------------------------------------------------------------------------------- /src/types/array_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/types/array_type.h -------------------------------------------------------------------------------- /src/types/maybe_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/types/maybe_type.h -------------------------------------------------------------------------------- /src/types/sum_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/types/sum_type.cpp -------------------------------------------------------------------------------- /src/types/sum_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/types/sum_type.h -------------------------------------------------------------------------------- /src/types/unit_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/types/unit_type.h -------------------------------------------------------------------------------- /src/unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/unit.cpp -------------------------------------------------------------------------------- /src/unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/unit.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/version.cpp -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/src/version.h -------------------------------------------------------------------------------- /tests/files/a.in: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /tests/files/abc.in: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /tests/files/abc.inout: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /tests/includes/bad_external_import.nwt: -------------------------------------------------------------------------------- 1 | import does_not_exist -------------------------------------------------------------------------------- /tests/includes/io.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/includes/io.nwt -------------------------------------------------------------------------------- /tests/includes/nested.nwt: -------------------------------------------------------------------------------- 1 | import trivial -------------------------------------------------------------------------------- /tests/includes/sub/trivial.nwt: -------------------------------------------------------------------------------- 1 | i:= 3 2 | g := () -> int { return 15 } -------------------------------------------------------------------------------- /tests/includes/trivial.nwt: -------------------------------------------------------------------------------- 1 | i:= 3 2 | g := () -> int { return 15 } -------------------------------------------------------------------------------- /tests/reference/t0000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0000 -------------------------------------------------------------------------------- /tests/reference/t0001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0001 -------------------------------------------------------------------------------- /tests/reference/t0002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0002 -------------------------------------------------------------------------------- /tests/reference/t0003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0003 -------------------------------------------------------------------------------- /tests/reference/t0004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0004 -------------------------------------------------------------------------------- /tests/reference/t0005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0005 -------------------------------------------------------------------------------- /tests/reference/t0006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0006 -------------------------------------------------------------------------------- /tests/reference/t0007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0007 -------------------------------------------------------------------------------- /tests/reference/t0008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0008 -------------------------------------------------------------------------------- /tests/reference/t0009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0009 -------------------------------------------------------------------------------- /tests/reference/t0010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0010 -------------------------------------------------------------------------------- /tests/reference/t0011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0011 -------------------------------------------------------------------------------- /tests/reference/t0012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0012 -------------------------------------------------------------------------------- /tests/reference/t0013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0013 -------------------------------------------------------------------------------- /tests/reference/t0014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0014 -------------------------------------------------------------------------------- /tests/reference/t0015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0015 -------------------------------------------------------------------------------- /tests/reference/t0016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0016 -------------------------------------------------------------------------------- /tests/reference/t0017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0017 -------------------------------------------------------------------------------- /tests/reference/t0018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0018 -------------------------------------------------------------------------------- /tests/reference/t0019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0019 -------------------------------------------------------------------------------- /tests/reference/t0020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0020 -------------------------------------------------------------------------------- /tests/reference/t0030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0030 -------------------------------------------------------------------------------- /tests/reference/t0031: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0031 -------------------------------------------------------------------------------- /tests/reference/t0040: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0040 -------------------------------------------------------------------------------- /tests/reference/t0041: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0041 -------------------------------------------------------------------------------- /tests/reference/t0042: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0042 -------------------------------------------------------------------------------- /tests/reference/t0043: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0043 -------------------------------------------------------------------------------- /tests/reference/t0044: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0044 -------------------------------------------------------------------------------- /tests/reference/t0045: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0045 -------------------------------------------------------------------------------- /tests/reference/t0046: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0046 -------------------------------------------------------------------------------- /tests/reference/t0047: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0047 -------------------------------------------------------------------------------- /tests/reference/t0048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0048 -------------------------------------------------------------------------------- /tests/reference/t0050: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0050 -------------------------------------------------------------------------------- /tests/reference/t0051: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0051 -------------------------------------------------------------------------------- /tests/reference/t0052: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0052 -------------------------------------------------------------------------------- /tests/reference/t0053: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0053 -------------------------------------------------------------------------------- /tests/reference/t0054: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0054 -------------------------------------------------------------------------------- /tests/reference/t0060: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0060 -------------------------------------------------------------------------------- /tests/reference/t0061: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0061 -------------------------------------------------------------------------------- /tests/reference/t0062: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0062 -------------------------------------------------------------------------------- /tests/reference/t0063: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0063 -------------------------------------------------------------------------------- /tests/reference/t0064: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0064 -------------------------------------------------------------------------------- /tests/reference/t0065: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0065 -------------------------------------------------------------------------------- /tests/reference/t0066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0066 -------------------------------------------------------------------------------- /tests/reference/t0067: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0067 -------------------------------------------------------------------------------- /tests/reference/t0100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0100 -------------------------------------------------------------------------------- /tests/reference/t0101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0101 -------------------------------------------------------------------------------- /tests/reference/t0102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0102 -------------------------------------------------------------------------------- /tests/reference/t0103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0103 -------------------------------------------------------------------------------- /tests/reference/t0104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0104 -------------------------------------------------------------------------------- /tests/reference/t0105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0105 -------------------------------------------------------------------------------- /tests/reference/t0106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0106 -------------------------------------------------------------------------------- /tests/reference/t0107: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0107 -------------------------------------------------------------------------------- /tests/reference/t0109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0109 -------------------------------------------------------------------------------- /tests/reference/t0110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0110 -------------------------------------------------------------------------------- /tests/reference/t0111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0111 -------------------------------------------------------------------------------- /tests/reference/t0112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0112 -------------------------------------------------------------------------------- /tests/reference/t0113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0113 -------------------------------------------------------------------------------- /tests/reference/t0114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0114 -------------------------------------------------------------------------------- /tests/reference/t0115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0115 -------------------------------------------------------------------------------- /tests/reference/t0240: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0240 -------------------------------------------------------------------------------- /tests/reference/t0241: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0241 -------------------------------------------------------------------------------- /tests/reference/t0242: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0242 -------------------------------------------------------------------------------- /tests/reference/t0300: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0300 -------------------------------------------------------------------------------- /tests/reference/t0301: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0301 -------------------------------------------------------------------------------- /tests/reference/t0302: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0302 -------------------------------------------------------------------------------- /tests/reference/t0303: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0303 -------------------------------------------------------------------------------- /tests/reference/t0304: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0304 -------------------------------------------------------------------------------- /tests/reference/t0350: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0350 -------------------------------------------------------------------------------- /tests/reference/t0351: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0351 -------------------------------------------------------------------------------- /tests/reference/t0353: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0353 -------------------------------------------------------------------------------- /tests/reference/t0400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0400 -------------------------------------------------------------------------------- /tests/reference/t0500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0500 -------------------------------------------------------------------------------- /tests/reference/t0501: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0501 -------------------------------------------------------------------------------- /tests/reference/t0502: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0502 -------------------------------------------------------------------------------- /tests/reference/t0503: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0503 -------------------------------------------------------------------------------- /tests/reference/t0504: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0504 -------------------------------------------------------------------------------- /tests/reference/t0505: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t0505 -------------------------------------------------------------------------------- /tests/reference/t10000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10000 -------------------------------------------------------------------------------- /tests/reference/t10001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10001 -------------------------------------------------------------------------------- /tests/reference/t10002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10002 -------------------------------------------------------------------------------- /tests/reference/t10003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10003 -------------------------------------------------------------------------------- /tests/reference/t10004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10004 -------------------------------------------------------------------------------- /tests/reference/t10005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10005 -------------------------------------------------------------------------------- /tests/reference/t10006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10006 -------------------------------------------------------------------------------- /tests/reference/t1001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1001 -------------------------------------------------------------------------------- /tests/reference/t1002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1002 -------------------------------------------------------------------------------- /tests/reference/t1003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1003 -------------------------------------------------------------------------------- /tests/reference/t1004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1004 -------------------------------------------------------------------------------- /tests/reference/t1005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1005 -------------------------------------------------------------------------------- /tests/reference/t1006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1006 -------------------------------------------------------------------------------- /tests/reference/t1007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1007 -------------------------------------------------------------------------------- /tests/reference/t1008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1008 -------------------------------------------------------------------------------- /tests/reference/t1009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1009 -------------------------------------------------------------------------------- /tests/reference/t1010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1010 -------------------------------------------------------------------------------- /tests/reference/t10100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10100 -------------------------------------------------------------------------------- /tests/reference/t10101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10101 -------------------------------------------------------------------------------- /tests/reference/t10102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10102 -------------------------------------------------------------------------------- /tests/reference/t10103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10103 -------------------------------------------------------------------------------- /tests/reference/t10104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10104 -------------------------------------------------------------------------------- /tests/reference/t10105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10105 -------------------------------------------------------------------------------- /tests/reference/t10106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10106 -------------------------------------------------------------------------------- /tests/reference/t10107: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10107 -------------------------------------------------------------------------------- /tests/reference/t10108: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10108 -------------------------------------------------------------------------------- /tests/reference/t10109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10109 -------------------------------------------------------------------------------- /tests/reference/t1011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1011 -------------------------------------------------------------------------------- /tests/reference/t10110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10110 -------------------------------------------------------------------------------- /tests/reference/t10111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10111 -------------------------------------------------------------------------------- /tests/reference/t10112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10112 -------------------------------------------------------------------------------- /tests/reference/t10113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10113 -------------------------------------------------------------------------------- /tests/reference/t10114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t10114 -------------------------------------------------------------------------------- /tests/reference/t1018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1018 -------------------------------------------------------------------------------- /tests/reference/t1019: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1019 -------------------------------------------------------------------------------- /tests/reference/t1020: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1020 -------------------------------------------------------------------------------- /tests/reference/t1021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1021 -------------------------------------------------------------------------------- /tests/reference/t1022: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1022 -------------------------------------------------------------------------------- /tests/reference/t1023: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1023 -------------------------------------------------------------------------------- /tests/reference/t1024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1024 -------------------------------------------------------------------------------- /tests/reference/t1030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1030 -------------------------------------------------------------------------------- /tests/reference/t1031: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1031 -------------------------------------------------------------------------------- /tests/reference/t1032: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1032 -------------------------------------------------------------------------------- /tests/reference/t1033: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1033 -------------------------------------------------------------------------------- /tests/reference/t1034: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1034 -------------------------------------------------------------------------------- /tests/reference/t1035: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1035 -------------------------------------------------------------------------------- /tests/reference/t1040: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1040 -------------------------------------------------------------------------------- /tests/reference/t1041: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1041 -------------------------------------------------------------------------------- /tests/reference/t1042: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1042 -------------------------------------------------------------------------------- /tests/reference/t1043: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1043 -------------------------------------------------------------------------------- /tests/reference/t1044: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1044 -------------------------------------------------------------------------------- /tests/reference/t1050: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1050 -------------------------------------------------------------------------------- /tests/reference/t1051: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1051 -------------------------------------------------------------------------------- /tests/reference/t1100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1100 -------------------------------------------------------------------------------- /tests/reference/t11000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t11000 -------------------------------------------------------------------------------- /tests/reference/t1101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1101 -------------------------------------------------------------------------------- /tests/reference/t1102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1102 -------------------------------------------------------------------------------- /tests/reference/t1103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1103 -------------------------------------------------------------------------------- /tests/reference/t1104: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1104 -------------------------------------------------------------------------------- /tests/reference/t1105: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1105 -------------------------------------------------------------------------------- /tests/reference/t1106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1106 -------------------------------------------------------------------------------- /tests/reference/t1107: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1107 -------------------------------------------------------------------------------- /tests/reference/t1108: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1108 -------------------------------------------------------------------------------- /tests/reference/t1109: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1109 -------------------------------------------------------------------------------- /tests/reference/t1110: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1110 -------------------------------------------------------------------------------- /tests/reference/t11100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t11100 -------------------------------------------------------------------------------- /tests/reference/t1111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1111 -------------------------------------------------------------------------------- /tests/reference/t1112: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1112 -------------------------------------------------------------------------------- /tests/reference/t1113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1113 -------------------------------------------------------------------------------- /tests/reference/t1114: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1114 -------------------------------------------------------------------------------- /tests/reference/t1115: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1115 -------------------------------------------------------------------------------- /tests/reference/t1116: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1116 -------------------------------------------------------------------------------- /tests/reference/t1117: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1117 -------------------------------------------------------------------------------- /tests/reference/t1118: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1118 -------------------------------------------------------------------------------- /tests/reference/t1119: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1119 -------------------------------------------------------------------------------- /tests/reference/t1120: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1120 -------------------------------------------------------------------------------- /tests/reference/t11200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t11200 -------------------------------------------------------------------------------- /tests/reference/t1121: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1121 -------------------------------------------------------------------------------- /tests/reference/t1122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1122 -------------------------------------------------------------------------------- /tests/reference/t1123: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1123 -------------------------------------------------------------------------------- /tests/reference/t1124: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1124 -------------------------------------------------------------------------------- /tests/reference/t1125: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1125 -------------------------------------------------------------------------------- /tests/reference/t11300: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t11300 -------------------------------------------------------------------------------- /tests/reference/t12000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t12000 -------------------------------------------------------------------------------- /tests/reference/t12001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t12001 -------------------------------------------------------------------------------- /tests/reference/t1218: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1218 -------------------------------------------------------------------------------- /tests/reference/t1219: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1219 -------------------------------------------------------------------------------- /tests/reference/t1220: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1220 -------------------------------------------------------------------------------- /tests/reference/t1221: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1221 -------------------------------------------------------------------------------- /tests/reference/t1222: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1222 -------------------------------------------------------------------------------- /tests/reference/t1223: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1223 -------------------------------------------------------------------------------- /tests/reference/t1224: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1224 -------------------------------------------------------------------------------- /tests/reference/t1225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1225 -------------------------------------------------------------------------------- /tests/reference/t1226: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1226 -------------------------------------------------------------------------------- /tests/reference/t1227: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1227 -------------------------------------------------------------------------------- /tests/reference/t1228: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1228 -------------------------------------------------------------------------------- /tests/reference/t1229: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1229 -------------------------------------------------------------------------------- /tests/reference/t1230: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1230 -------------------------------------------------------------------------------- /tests/reference/t1231: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1231 -------------------------------------------------------------------------------- /tests/reference/t1232: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1232 -------------------------------------------------------------------------------- /tests/reference/t1233: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1233 -------------------------------------------------------------------------------- /tests/reference/t1234: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1234 -------------------------------------------------------------------------------- /tests/reference/t1235: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1235 -------------------------------------------------------------------------------- /tests/reference/t1236: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1236 -------------------------------------------------------------------------------- /tests/reference/t1237: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1237 -------------------------------------------------------------------------------- /tests/reference/t1238: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1238 -------------------------------------------------------------------------------- /tests/reference/t1239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1239 -------------------------------------------------------------------------------- /tests/reference/t1240: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1240 -------------------------------------------------------------------------------- /tests/reference/t1241: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1241 -------------------------------------------------------------------------------- /tests/reference/t1242: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1242 -------------------------------------------------------------------------------- /tests/reference/t1243: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1243 -------------------------------------------------------------------------------- /tests/reference/t1244: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1244 -------------------------------------------------------------------------------- /tests/reference/t1245: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1245 -------------------------------------------------------------------------------- /tests/reference/t1246: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1246 -------------------------------------------------------------------------------- /tests/reference/t1247: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1247 -------------------------------------------------------------------------------- /tests/reference/t1248: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1248 -------------------------------------------------------------------------------- /tests/reference/t1249: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1249 -------------------------------------------------------------------------------- /tests/reference/t1250: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1250 -------------------------------------------------------------------------------- /tests/reference/t1251: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1251 -------------------------------------------------------------------------------- /tests/reference/t1252: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1252 -------------------------------------------------------------------------------- /tests/reference/t1253: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1253 -------------------------------------------------------------------------------- /tests/reference/t1254: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1254 -------------------------------------------------------------------------------- /tests/reference/t1255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1255 -------------------------------------------------------------------------------- /tests/reference/t1256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1256 -------------------------------------------------------------------------------- /tests/reference/t1257: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1257 -------------------------------------------------------------------------------- /tests/reference/t1258: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1258 -------------------------------------------------------------------------------- /tests/reference/t1259: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1259 -------------------------------------------------------------------------------- /tests/reference/t1260: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1260 -------------------------------------------------------------------------------- /tests/reference/t1261: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1261 -------------------------------------------------------------------------------- /tests/reference/t1262: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1262 -------------------------------------------------------------------------------- /tests/reference/t1263: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1263 -------------------------------------------------------------------------------- /tests/reference/t1264: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1264 -------------------------------------------------------------------------------- /tests/reference/t1265: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1265 -------------------------------------------------------------------------------- /tests/reference/t1266: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1266 -------------------------------------------------------------------------------- /tests/reference/t1267: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1267 -------------------------------------------------------------------------------- /tests/reference/t1268: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1268 -------------------------------------------------------------------------------- /tests/reference/t1269: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1269 -------------------------------------------------------------------------------- /tests/reference/t1270: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1270 -------------------------------------------------------------------------------- /tests/reference/t1271: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1271 -------------------------------------------------------------------------------- /tests/reference/t1272: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1272 -------------------------------------------------------------------------------- /tests/reference/t1273: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1273 -------------------------------------------------------------------------------- /tests/reference/t1274: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1274 -------------------------------------------------------------------------------- /tests/reference/t1275: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1275 -------------------------------------------------------------------------------- /tests/reference/t1276: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1276 -------------------------------------------------------------------------------- /tests/reference/t1277: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1277 -------------------------------------------------------------------------------- /tests/reference/t1278: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1278 -------------------------------------------------------------------------------- /tests/reference/t1279: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1279 -------------------------------------------------------------------------------- /tests/reference/t1280: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1280 -------------------------------------------------------------------------------- /tests/reference/t1281: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1281 -------------------------------------------------------------------------------- /tests/reference/t1282: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1282 -------------------------------------------------------------------------------- /tests/reference/t1283: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1283 -------------------------------------------------------------------------------- /tests/reference/t1284: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1284 -------------------------------------------------------------------------------- /tests/reference/t1285: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1285 -------------------------------------------------------------------------------- /tests/reference/t1286: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1286 -------------------------------------------------------------------------------- /tests/reference/t1287: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1287 -------------------------------------------------------------------------------- /tests/reference/t1288: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1288 -------------------------------------------------------------------------------- /tests/reference/t1289: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1289 -------------------------------------------------------------------------------- /tests/reference/t1290: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1290 -------------------------------------------------------------------------------- /tests/reference/t1291: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/reference/t1291 -------------------------------------------------------------------------------- /tests/t0000.nwt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/t0001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0001.nwt -------------------------------------------------------------------------------- /tests/t0002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0002.nwt -------------------------------------------------------------------------------- /tests/t0003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0003.nwt -------------------------------------------------------------------------------- /tests/t0004.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0004.nwt -------------------------------------------------------------------------------- /tests/t0005.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0005.nwt -------------------------------------------------------------------------------- /tests/t0006.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0006.nwt -------------------------------------------------------------------------------- /tests/t0007.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0007.nwt -------------------------------------------------------------------------------- /tests/t0008.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0008.nwt -------------------------------------------------------------------------------- /tests/t0009.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0009.nwt -------------------------------------------------------------------------------- /tests/t0010.nwt: -------------------------------------------------------------------------------- 1 | x: int 2 | z = 8 -------------------------------------------------------------------------------- /tests/t0011.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0011.nwt -------------------------------------------------------------------------------- /tests/t0012.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0012.nwt -------------------------------------------------------------------------------- /tests/t0013.nwt: -------------------------------------------------------------------------------- 1 | x: double = .42.0 2 | -------------------------------------------------------------------------------- /tests/t0014.nwt: -------------------------------------------------------------------------------- 1 | x: double = . -------------------------------------------------------------------------------- /tests/t0015.nwt: -------------------------------------------------------------------------------- 1 | x: double = 2 | -------------------------------------------------------------------------------- /tests/t0016.nwt: -------------------------------------------------------------------------------- 1 | //a comment with no endline -------------------------------------------------------------------------------- /tests/t0017.nwt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/t0018.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0018.nwt -------------------------------------------------------------------------------- /tests/t0019.nwt: -------------------------------------------------------------------------------- 1 | x: int 2 | z -------------------------------------------------------------------------------- /tests/t0020.nwt: -------------------------------------------------------------------------------- 1 | x: y = 2 -------------------------------------------------------------------------------- /tests/t0030.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0030.nwt -------------------------------------------------------------------------------- /tests/t0031.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0031.nwt -------------------------------------------------------------------------------- /tests/t0040.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0040.nwt -------------------------------------------------------------------------------- /tests/t0041.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0041.nwt -------------------------------------------------------------------------------- /tests/t0042.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0042.nwt -------------------------------------------------------------------------------- /tests/t0043.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0043.nwt -------------------------------------------------------------------------------- /tests/t0044.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0044.nwt -------------------------------------------------------------------------------- /tests/t0045.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0045.nwt -------------------------------------------------------------------------------- /tests/t0046.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0046.nwt -------------------------------------------------------------------------------- /tests/t0047.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0047.nwt -------------------------------------------------------------------------------- /tests/t0048.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0048.nwt -------------------------------------------------------------------------------- /tests/t0050.nwt: -------------------------------------------------------------------------------- 1 | # test existence of builtins 2 | e:error 3 | -------------------------------------------------------------------------------- /tests/t0051.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0051.nwt -------------------------------------------------------------------------------- /tests/t0052.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0052.nwt -------------------------------------------------------------------------------- /tests/t0053.nwt: -------------------------------------------------------------------------------- 1 | # test existence of builtins 2 | el:error_list 3 | -------------------------------------------------------------------------------- /tests/t0054.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0054.nwt -------------------------------------------------------------------------------- /tests/t0060.nwt: -------------------------------------------------------------------------------- 1 | # test required version 2 | $target 0.1 -------------------------------------------------------------------------------- /tests/t0061.nwt: -------------------------------------------------------------------------------- 1 | # test required version with explicit patch rev 2 | $target 0.1.0 -------------------------------------------------------------------------------- /tests/t0062.nwt: -------------------------------------------------------------------------------- 1 | # test unsupported major version 2 | $target 123456789.0.0 -------------------------------------------------------------------------------- /tests/t0063.nwt: -------------------------------------------------------------------------------- 1 | # test unsupported patch version 2 | $target 0.1.123456789 -------------------------------------------------------------------------------- /tests/t0064.nwt: -------------------------------------------------------------------------------- 1 | # test invalid version number 2 | $target -3.1.123456789 -------------------------------------------------------------------------------- /tests/t0065.nwt: -------------------------------------------------------------------------------- 1 | # test invalid version number 2 | $target a.1.123456789 -------------------------------------------------------------------------------- /tests/t0066.nwt: -------------------------------------------------------------------------------- 1 | # test invalid version number 2 | $target -3.1.123456789 -------------------------------------------------------------------------------- /tests/t0067.nwt: -------------------------------------------------------------------------------- 1 | # test unsupported minor version 2 | $target 0.123456789.0 -------------------------------------------------------------------------------- /tests/t0100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0100.nwt -------------------------------------------------------------------------------- /tests/t0101.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0101.nwt -------------------------------------------------------------------------------- /tests/t0102.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0102.nwt -------------------------------------------------------------------------------- /tests/t0103.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0103.nwt -------------------------------------------------------------------------------- /tests/t0104.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0104.nwt -------------------------------------------------------------------------------- /tests/t0105.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0105.nwt -------------------------------------------------------------------------------- /tests/t0106.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0106.nwt -------------------------------------------------------------------------------- /tests/t0107.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0107.nwt -------------------------------------------------------------------------------- /tests/t0109.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0109.nwt -------------------------------------------------------------------------------- /tests/t0110.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0110.nwt -------------------------------------------------------------------------------- /tests/t0111.nwt: -------------------------------------------------------------------------------- 1 | // test invalid type for array element 2 | nums: undefined[] 3 | -------------------------------------------------------------------------------- /tests/t0112.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0112.nwt -------------------------------------------------------------------------------- /tests/t0113.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0113.nwt -------------------------------------------------------------------------------- /tests/t0114.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0114.nwt -------------------------------------------------------------------------------- /tests/t0115.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0115.nwt -------------------------------------------------------------------------------- /tests/t0240.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0240.nwt -------------------------------------------------------------------------------- /tests/t0241.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0241.nwt -------------------------------------------------------------------------------- /tests/t0242.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0242.nwt -------------------------------------------------------------------------------- /tests/t0300.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0300.nwt -------------------------------------------------------------------------------- /tests/t0301.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0301.nwt -------------------------------------------------------------------------------- /tests/t0302.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0302.nwt -------------------------------------------------------------------------------- /tests/t0303.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0303.nwt -------------------------------------------------------------------------------- /tests/t0304.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0304.nwt -------------------------------------------------------------------------------- /tests/t0350.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0350.nwt -------------------------------------------------------------------------------- /tests/t0351.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0351.nwt -------------------------------------------------------------------------------- /tests/t0353.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0353.nwt -------------------------------------------------------------------------------- /tests/t0400.nwt: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /tests/t0500.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0500.nwt -------------------------------------------------------------------------------- /tests/t0501.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t0501.nwt -------------------------------------------------------------------------------- /tests/t0502.nwt: -------------------------------------------------------------------------------- 1 | # test too few arguments to builtin function 2 | open() -------------------------------------------------------------------------------- /tests/t0503.nwt: -------------------------------------------------------------------------------- 1 | # test too few arguments to builtin function 2 | open("stuff") -------------------------------------------------------------------------------- /tests/t0504.nwt: -------------------------------------------------------------------------------- 1 | # test too few arguments to builtin function 2 | close() -------------------------------------------------------------------------------- /tests/t0505.nwt: -------------------------------------------------------------------------------- 1 | # test too few arguments to builtin function 2 | get() -------------------------------------------------------------------------------- /tests/t10000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10000.nwt -------------------------------------------------------------------------------- /tests/t10001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10001.nwt -------------------------------------------------------------------------------- /tests/t10002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10002.nwt -------------------------------------------------------------------------------- /tests/t10003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10003.nwt -------------------------------------------------------------------------------- /tests/t10004.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10004.nwt -------------------------------------------------------------------------------- /tests/t10005.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10005.nwt -------------------------------------------------------------------------------- /tests/t10006.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10006.nwt -------------------------------------------------------------------------------- /tests/t1001.nwt: -------------------------------------------------------------------------------- 1 | i: int = 86 2 | -------------------------------------------------------------------------------- /tests/t1002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1002.nwt -------------------------------------------------------------------------------- /tests/t1003.nwt: -------------------------------------------------------------------------------- 1 | i: int = 42 * 2 2 | -------------------------------------------------------------------------------- /tests/t1004.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1004.nwt -------------------------------------------------------------------------------- /tests/t1005.nwt: -------------------------------------------------------------------------------- 1 | x: double = 42.4222 2 | -------------------------------------------------------------------------------- /tests/t1006.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1006.nwt -------------------------------------------------------------------------------- /tests/t1007.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1007.nwt -------------------------------------------------------------------------------- /tests/t1008.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1008.nwt -------------------------------------------------------------------------------- /tests/t1009.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1009.nwt -------------------------------------------------------------------------------- /tests/t1010.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1010.nwt -------------------------------------------------------------------------------- /tests/t10100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10100.nwt -------------------------------------------------------------------------------- /tests/t10101.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10101.nwt -------------------------------------------------------------------------------- /tests/t10102.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10102.nwt -------------------------------------------------------------------------------- /tests/t10103.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10103.nwt -------------------------------------------------------------------------------- /tests/t10104.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10104.nwt -------------------------------------------------------------------------------- /tests/t10105.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10105.nwt -------------------------------------------------------------------------------- /tests/t10106.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10106.nwt -------------------------------------------------------------------------------- /tests/t10107.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10107.nwt -------------------------------------------------------------------------------- /tests/t10108.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10108.nwt -------------------------------------------------------------------------------- /tests/t10109.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10109.nwt -------------------------------------------------------------------------------- /tests/t1011.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1011.nwt -------------------------------------------------------------------------------- /tests/t10110.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10110.nwt -------------------------------------------------------------------------------- /tests/t10111.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10111.nwt -------------------------------------------------------------------------------- /tests/t10112.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10112.nwt -------------------------------------------------------------------------------- /tests/t10113.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10113.nwt -------------------------------------------------------------------------------- /tests/t10114.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t10114.nwt -------------------------------------------------------------------------------- /tests/t1018.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1018.nwt -------------------------------------------------------------------------------- /tests/t1019.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1019.nwt -------------------------------------------------------------------------------- /tests/t1020.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1020.nwt -------------------------------------------------------------------------------- /tests/t1021.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1021.nwt -------------------------------------------------------------------------------- /tests/t1022.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1022.nwt -------------------------------------------------------------------------------- /tests/t1023.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1023.nwt -------------------------------------------------------------------------------- /tests/t1024.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1024.nwt -------------------------------------------------------------------------------- /tests/t1030.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1030.nwt -------------------------------------------------------------------------------- /tests/t1031.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1031.nwt -------------------------------------------------------------------------------- /tests/t1032.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1032.nwt -------------------------------------------------------------------------------- /tests/t1033.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1033.nwt -------------------------------------------------------------------------------- /tests/t1034.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1034.nwt -------------------------------------------------------------------------------- /tests/t1035.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1035.nwt -------------------------------------------------------------------------------- /tests/t1040.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1040.nwt -------------------------------------------------------------------------------- /tests/t1041.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1041.nwt -------------------------------------------------------------------------------- /tests/t1042.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1042.nwt -------------------------------------------------------------------------------- /tests/t1043.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1043.nwt -------------------------------------------------------------------------------- /tests/t1044.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1044.nwt -------------------------------------------------------------------------------- /tests/t1050.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1050.nwt -------------------------------------------------------------------------------- /tests/t1051.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1051.nwt -------------------------------------------------------------------------------- /tests/t1100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1100.nwt -------------------------------------------------------------------------------- /tests/t11000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t11000.nwt -------------------------------------------------------------------------------- /tests/t1101.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1101.nwt -------------------------------------------------------------------------------- /tests/t1102.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1102.nwt -------------------------------------------------------------------------------- /tests/t1103.nwt: -------------------------------------------------------------------------------- 1 | array: int["hello world"] 2 | -------------------------------------------------------------------------------- /tests/t1104.nwt: -------------------------------------------------------------------------------- 1 | array: int[3.4] 2 | -------------------------------------------------------------------------------- /tests/t1105.nwt: -------------------------------------------------------------------------------- 1 | array: int[0] 2 | -------------------------------------------------------------------------------- /tests/t1106.nwt: -------------------------------------------------------------------------------- 1 | a: int = i * 42 2 | -------------------------------------------------------------------------------- /tests/t1107.nwt: -------------------------------------------------------------------------------- 1 | a: string = "five" 2 | 3 | my_values: double[12 + a] 4 | -------------------------------------------------------------------------------- /tests/t1108.nwt: -------------------------------------------------------------------------------- 1 | i: int 2 | i: double 3 | -------------------------------------------------------------------------------- /tests/t1109.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1109.nwt -------------------------------------------------------------------------------- /tests/t1110.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1110.nwt -------------------------------------------------------------------------------- /tests/t11100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t11100.nwt -------------------------------------------------------------------------------- /tests/t1111.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1111.nwt -------------------------------------------------------------------------------- /tests/t1112.nwt: -------------------------------------------------------------------------------- 1 | i: int = 42.2 2 | -------------------------------------------------------------------------------- /tests/t1113.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1113.nwt -------------------------------------------------------------------------------- /tests/t1114.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1114.nwt -------------------------------------------------------------------------------- /tests/t1115.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1115.nwt -------------------------------------------------------------------------------- /tests/t1116.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1116.nwt -------------------------------------------------------------------------------- /tests/t1117.nwt: -------------------------------------------------------------------------------- 1 | x: double = "hello" 2 | -------------------------------------------------------------------------------- /tests/t1118.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1118.nwt -------------------------------------------------------------------------------- /tests/t1119.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1119.nwt -------------------------------------------------------------------------------- /tests/t1120.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1120.nwt -------------------------------------------------------------------------------- /tests/t11200.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t11200.nwt -------------------------------------------------------------------------------- /tests/t1121.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1121.nwt -------------------------------------------------------------------------------- /tests/t1122.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1122.nwt -------------------------------------------------------------------------------- /tests/t11300.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t11300.nwt -------------------------------------------------------------------------------- /tests/t12000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t12000.nwt -------------------------------------------------------------------------------- /tests/t12001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t12001.nwt -------------------------------------------------------------------------------- /tests/t1218.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1218.nwt -------------------------------------------------------------------------------- /tests/t1219.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1219.nwt -------------------------------------------------------------------------------- /tests/t1220.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1220.nwt -------------------------------------------------------------------------------- /tests/t1221.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1221.nwt -------------------------------------------------------------------------------- /tests/t1222.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1222.nwt -------------------------------------------------------------------------------- /tests/t1223.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1223.nwt -------------------------------------------------------------------------------- /tests/t1224.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1224.nwt -------------------------------------------------------------------------------- /tests/t1225.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1225.nwt -------------------------------------------------------------------------------- /tests/t1226.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1226.nwt -------------------------------------------------------------------------------- /tests/t1227.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1227.nwt -------------------------------------------------------------------------------- /tests/t1228.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1228.nwt -------------------------------------------------------------------------------- /tests/t1229.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1229.nwt -------------------------------------------------------------------------------- /tests/t1230.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1230.nwt -------------------------------------------------------------------------------- /tests/t1231.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1231.nwt -------------------------------------------------------------------------------- /tests/t1232.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1232.nwt -------------------------------------------------------------------------------- /tests/t1233.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1233.nwt -------------------------------------------------------------------------------- /tests/t1234.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1234.nwt -------------------------------------------------------------------------------- /tests/t1235.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1235.nwt -------------------------------------------------------------------------------- /tests/t1236.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1236.nwt -------------------------------------------------------------------------------- /tests/t1237.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1237.nwt -------------------------------------------------------------------------------- /tests/t1238.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1238.nwt -------------------------------------------------------------------------------- /tests/t1239.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1239.nwt -------------------------------------------------------------------------------- /tests/t1240.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1240.nwt -------------------------------------------------------------------------------- /tests/t1241.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1241.nwt -------------------------------------------------------------------------------- /tests/t1242.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1242.nwt -------------------------------------------------------------------------------- /tests/t1243.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1243.nwt -------------------------------------------------------------------------------- /tests/t1244.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1244.nwt -------------------------------------------------------------------------------- /tests/t1245.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1245.nwt -------------------------------------------------------------------------------- /tests/t1246.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1246.nwt -------------------------------------------------------------------------------- /tests/t1247.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1247.nwt -------------------------------------------------------------------------------- /tests/t1248.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1248.nwt -------------------------------------------------------------------------------- /tests/t1249.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1249.nwt -------------------------------------------------------------------------------- /tests/t1250.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1250.nwt -------------------------------------------------------------------------------- /tests/t1251.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1251.nwt -------------------------------------------------------------------------------- /tests/t1252.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1252.nwt -------------------------------------------------------------------------------- /tests/t1253.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1253.nwt -------------------------------------------------------------------------------- /tests/t1254.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1254.nwt -------------------------------------------------------------------------------- /tests/t1255.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1255.nwt -------------------------------------------------------------------------------- /tests/t1256.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1256.nwt -------------------------------------------------------------------------------- /tests/t1257.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1257.nwt -------------------------------------------------------------------------------- /tests/t1258.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1258.nwt -------------------------------------------------------------------------------- /tests/t1259.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1259.nwt -------------------------------------------------------------------------------- /tests/t1260.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1260.nwt -------------------------------------------------------------------------------- /tests/t1261.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1261.nwt -------------------------------------------------------------------------------- /tests/t1262.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1262.nwt -------------------------------------------------------------------------------- /tests/t1263.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1263.nwt -------------------------------------------------------------------------------- /tests/t1264.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1264.nwt -------------------------------------------------------------------------------- /tests/t1265.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1265.nwt -------------------------------------------------------------------------------- /tests/t1266.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1266.nwt -------------------------------------------------------------------------------- /tests/t1267.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1267.nwt -------------------------------------------------------------------------------- /tests/t1268.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1268.nwt -------------------------------------------------------------------------------- /tests/t1269.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1269.nwt -------------------------------------------------------------------------------- /tests/t1270.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1270.nwt -------------------------------------------------------------------------------- /tests/t1271.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1271.nwt -------------------------------------------------------------------------------- /tests/t1272.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1272.nwt -------------------------------------------------------------------------------- /tests/t1273.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1273.nwt -------------------------------------------------------------------------------- /tests/t1274.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1274.nwt -------------------------------------------------------------------------------- /tests/t1275.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1275.nwt -------------------------------------------------------------------------------- /tests/t1276.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1276.nwt -------------------------------------------------------------------------------- /tests/t1277.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1277.nwt -------------------------------------------------------------------------------- /tests/t1278.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1278.nwt -------------------------------------------------------------------------------- /tests/t1279.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1279.nwt -------------------------------------------------------------------------------- /tests/t1280.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1280.nwt -------------------------------------------------------------------------------- /tests/t1281.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1281.nwt -------------------------------------------------------------------------------- /tests/t1282.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1282.nwt -------------------------------------------------------------------------------- /tests/t1283.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1283.nwt -------------------------------------------------------------------------------- /tests/t1284.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1284.nwt -------------------------------------------------------------------------------- /tests/t1285.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1285.nwt -------------------------------------------------------------------------------- /tests/t1286.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1286.nwt -------------------------------------------------------------------------------- /tests/t1287.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1287.nwt -------------------------------------------------------------------------------- /tests/t1288.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1288.nwt -------------------------------------------------------------------------------- /tests/t1289.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1289.nwt -------------------------------------------------------------------------------- /tests/t1290.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1290.nwt -------------------------------------------------------------------------------- /tests/t1291.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1291.nwt -------------------------------------------------------------------------------- /tests/t1292.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1292.nwt -------------------------------------------------------------------------------- /tests/t1293.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1293.nwt -------------------------------------------------------------------------------- /tests/t1294.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1294.nwt -------------------------------------------------------------------------------- /tests/t1295.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1295.nwt -------------------------------------------------------------------------------- /tests/t1296.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1296.nwt -------------------------------------------------------------------------------- /tests/t1297.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1297.nwt -------------------------------------------------------------------------------- /tests/t1298.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1298.nwt -------------------------------------------------------------------------------- /tests/t1299.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1299.nwt -------------------------------------------------------------------------------- /tests/t1411.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1411.nwt -------------------------------------------------------------------------------- /tests/t1412.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1412.nwt -------------------------------------------------------------------------------- /tests/t1413.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1413.nwt -------------------------------------------------------------------------------- /tests/t1414.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1414.nwt -------------------------------------------------------------------------------- /tests/t1415.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1415.nwt -------------------------------------------------------------------------------- /tests/t1416.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1416.nwt -------------------------------------------------------------------------------- /tests/t1417.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1417.nwt -------------------------------------------------------------------------------- /tests/t1418.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1418.nwt -------------------------------------------------------------------------------- /tests/t1419.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1419.nwt -------------------------------------------------------------------------------- /tests/t1420.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1420.nwt -------------------------------------------------------------------------------- /tests/t1421.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1421.nwt -------------------------------------------------------------------------------- /tests/t1422.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1422.nwt -------------------------------------------------------------------------------- /tests/t1423.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1423.nwt -------------------------------------------------------------------------------- /tests/t1424.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1424.nwt -------------------------------------------------------------------------------- /tests/t1425.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1425.nwt -------------------------------------------------------------------------------- /tests/t1426.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1426.nwt -------------------------------------------------------------------------------- /tests/t1427.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1427.nwt -------------------------------------------------------------------------------- /tests/t1428.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1428.nwt -------------------------------------------------------------------------------- /tests/t1429.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1429.nwt -------------------------------------------------------------------------------- /tests/t1500.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1500.nwt -------------------------------------------------------------------------------- /tests/t1501.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1501.nwt -------------------------------------------------------------------------------- /tests/t1502.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1502.nwt -------------------------------------------------------------------------------- /tests/t1503.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1503.nwt -------------------------------------------------------------------------------- /tests/t1504.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1504.nwt -------------------------------------------------------------------------------- /tests/t1505.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1505.nwt -------------------------------------------------------------------------------- /tests/t1506.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1506.nwt -------------------------------------------------------------------------------- /tests/t1507.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1507.nwt -------------------------------------------------------------------------------- /tests/t1508.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1508.nwt -------------------------------------------------------------------------------- /tests/t1509.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1509.nwt -------------------------------------------------------------------------------- /tests/t1510.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1510.nwt -------------------------------------------------------------------------------- /tests/t1700.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1700.nwt -------------------------------------------------------------------------------- /tests/t1702.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1702.nwt -------------------------------------------------------------------------------- /tests/t1703.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1703.nwt -------------------------------------------------------------------------------- /tests/t1704.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1704.nwt -------------------------------------------------------------------------------- /tests/t1705.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1705.nwt -------------------------------------------------------------------------------- /tests/t1706.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1706.nwt -------------------------------------------------------------------------------- /tests/t1708.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1708.nwt -------------------------------------------------------------------------------- /tests/t1711.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1711.nwt -------------------------------------------------------------------------------- /tests/t1712.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1712.nwt -------------------------------------------------------------------------------- /tests/t1713.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1713.nwt -------------------------------------------------------------------------------- /tests/t1714.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1714.nwt -------------------------------------------------------------------------------- /tests/t1715.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1715.nwt -------------------------------------------------------------------------------- /tests/t1719.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1719.nwt -------------------------------------------------------------------------------- /tests/t1720.nwt: -------------------------------------------------------------------------------- 1 | // do not allow divide by zero 2 | nums: int[10/0] 3 | -------------------------------------------------------------------------------- /tests/t1721.nwt: -------------------------------------------------------------------------------- 1 | // do not allow mod by zero 2 | nums: int[10%0] 3 | -------------------------------------------------------------------------------- /tests/t1800.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1800.nwt -------------------------------------------------------------------------------- /tests/t1801.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1801.nwt -------------------------------------------------------------------------------- /tests/t1802.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1802.nwt -------------------------------------------------------------------------------- /tests/t1803.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1803.nwt -------------------------------------------------------------------------------- /tests/t1804.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1804.nwt -------------------------------------------------------------------------------- /tests/t1805.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1805.nwt -------------------------------------------------------------------------------- /tests/t1900.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t1900.nwt -------------------------------------------------------------------------------- /tests/t2000.nwt: -------------------------------------------------------------------------------- 1 | print ("Hello, world!") 2 | -------------------------------------------------------------------------------- /tests/t2002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2002.nwt -------------------------------------------------------------------------------- /tests/t2003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2003.nwt -------------------------------------------------------------------------------- /tests/t2004.nwt: -------------------------------------------------------------------------------- 1 | //TODO: structs 2 | -------------------------------------------------------------------------------- /tests/t2008.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2008.nwt -------------------------------------------------------------------------------- /tests/t2010.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2010.nwt -------------------------------------------------------------------------------- /tests/t2011.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2011.nwt -------------------------------------------------------------------------------- /tests/t2012.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2012.nwt -------------------------------------------------------------------------------- /tests/t2013.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2013.nwt -------------------------------------------------------------------------------- /tests/t2014.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2014.nwt -------------------------------------------------------------------------------- /tests/t2015.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2015.nwt -------------------------------------------------------------------------------- /tests/t2016.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2016.nwt -------------------------------------------------------------------------------- /tests/t2017.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2017.nwt -------------------------------------------------------------------------------- /tests/t2018.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2018.nwt -------------------------------------------------------------------------------- /tests/t2019.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2019.nwt -------------------------------------------------------------------------------- /tests/t2020.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2020.nwt -------------------------------------------------------------------------------- /tests/t2021.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2021.nwt -------------------------------------------------------------------------------- /tests/t2022.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2022.nwt -------------------------------------------------------------------------------- /tests/t2023.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2023.nwt -------------------------------------------------------------------------------- /tests/t2024.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2024.nwt -------------------------------------------------------------------------------- /tests/t2025.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2025.nwt -------------------------------------------------------------------------------- /tests/t2026.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2026.nwt -------------------------------------------------------------------------------- /tests/t2027.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2027.nwt -------------------------------------------------------------------------------- /tests/t2028.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2028.nwt -------------------------------------------------------------------------------- /tests/t2030.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2030.nwt -------------------------------------------------------------------------------- /tests/t2031.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2031.nwt -------------------------------------------------------------------------------- /tests/t2032.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2032.nwt -------------------------------------------------------------------------------- /tests/t2033.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2033.nwt -------------------------------------------------------------------------------- /tests/t2034.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2034.nwt -------------------------------------------------------------------------------- /tests/t2035.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2035.nwt -------------------------------------------------------------------------------- /tests/t2036.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2036.nwt -------------------------------------------------------------------------------- /tests/t2037.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2037.nwt -------------------------------------------------------------------------------- /tests/t2038.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2038.nwt -------------------------------------------------------------------------------- /tests/t2039.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2039.nwt -------------------------------------------------------------------------------- /tests/t2040.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2040.nwt -------------------------------------------------------------------------------- /tests/t2041.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2041.nwt -------------------------------------------------------------------------------- /tests/t2042.nwt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/t2043.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2043.nwt -------------------------------------------------------------------------------- /tests/t2044.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2044.nwt -------------------------------------------------------------------------------- /tests/t2045.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2045.nwt -------------------------------------------------------------------------------- /tests/t2046.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2046.nwt -------------------------------------------------------------------------------- /tests/t2047.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2047.nwt -------------------------------------------------------------------------------- /tests/t2050.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2050.nwt -------------------------------------------------------------------------------- /tests/t2051.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2051.nwt -------------------------------------------------------------------------------- /tests/t2052.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2052.nwt -------------------------------------------------------------------------------- /tests/t2053.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2053.nwt -------------------------------------------------------------------------------- /tests/t2060.nwt: -------------------------------------------------------------------------------- 1 | i: int 2 | x: double 3 | 4 | i = x 5 | -------------------------------------------------------------------------------- /tests/t2061.nwt: -------------------------------------------------------------------------------- 1 | i: int 2 | s: string 3 | 4 | i = s 5 | -------------------------------------------------------------------------------- /tests/t2062.nwt: -------------------------------------------------------------------------------- 1 | x: double 2 | s: string 3 | 4 | x = s 5 | -------------------------------------------------------------------------------- /tests/t2063.nwt: -------------------------------------------------------------------------------- 1 | i: int = 42 2 | x: double = 3.14159 3 | 4 | i += x 5 | -------------------------------------------------------------------------------- /tests/t2064.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2064.nwt -------------------------------------------------------------------------------- /tests/t2065.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2065.nwt -------------------------------------------------------------------------------- /tests/t2066.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2066.nwt -------------------------------------------------------------------------------- /tests/t2067.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2067.nwt -------------------------------------------------------------------------------- /tests/t2070.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2070.nwt -------------------------------------------------------------------------------- /tests/t2071.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2071.nwt -------------------------------------------------------------------------------- /tests/t2072.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2072.nwt -------------------------------------------------------------------------------- /tests/t2073.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2073.nwt -------------------------------------------------------------------------------- /tests/t2075.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2075.nwt -------------------------------------------------------------------------------- /tests/t2076.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2076.nwt -------------------------------------------------------------------------------- /tests/t2077.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2077.nwt -------------------------------------------------------------------------------- /tests/t2078.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2078.nwt -------------------------------------------------------------------------------- /tests/t2080.nwt: -------------------------------------------------------------------------------- 1 | foo: int = my_circle.y 2 | -------------------------------------------------------------------------------- /tests/t2081.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2081.nwt -------------------------------------------------------------------------------- /tests/t2082.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2082.nwt -------------------------------------------------------------------------------- /tests/t2083.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2083.nwt -------------------------------------------------------------------------------- /tests/t2084.nwt: -------------------------------------------------------------------------------- 1 | print("t.x = " + t.x) -------------------------------------------------------------------------------- /tests/t2085.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2085.nwt -------------------------------------------------------------------------------- /tests/t2086.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2086.nwt -------------------------------------------------------------------------------- /tests/t2087.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2087.nwt -------------------------------------------------------------------------------- /tests/t2088.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2088.nwt -------------------------------------------------------------------------------- /tests/t2089.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2089.nwt -------------------------------------------------------------------------------- /tests/t2090.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2090.nwt -------------------------------------------------------------------------------- /tests/t2100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2100.nwt -------------------------------------------------------------------------------- /tests/t2101.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2101.nwt -------------------------------------------------------------------------------- /tests/t2200.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2200.nwt -------------------------------------------------------------------------------- /tests/t2201.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2201.nwt -------------------------------------------------------------------------------- /tests/t2800.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2800.nwt -------------------------------------------------------------------------------- /tests/t2802.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2802.nwt -------------------------------------------------------------------------------- /tests/t2803.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2803.nwt -------------------------------------------------------------------------------- /tests/t2900.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t2900.nwt -------------------------------------------------------------------------------- /tests/t3000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3000.nwt -------------------------------------------------------------------------------- /tests/t3001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3001.nwt -------------------------------------------------------------------------------- /tests/t3002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3002.nwt -------------------------------------------------------------------------------- /tests/t3003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3003.nwt -------------------------------------------------------------------------------- /tests/t3004.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3004.nwt -------------------------------------------------------------------------------- /tests/t3005.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3005.nwt -------------------------------------------------------------------------------- /tests/t3010.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3010.nwt -------------------------------------------------------------------------------- /tests/t3011.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3011.nwt -------------------------------------------------------------------------------- /tests/t3012.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3012.nwt -------------------------------------------------------------------------------- /tests/t3020.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3020.nwt -------------------------------------------------------------------------------- /tests/t3021.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3021.nwt -------------------------------------------------------------------------------- /tests/t3022.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3022.nwt -------------------------------------------------------------------------------- /tests/t3023.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3023.nwt -------------------------------------------------------------------------------- /tests/t3024.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3024.nwt -------------------------------------------------------------------------------- /tests/t3025.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3025.nwt -------------------------------------------------------------------------------- /tests/t3026.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3026.nwt -------------------------------------------------------------------------------- /tests/t3027.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3027.nwt -------------------------------------------------------------------------------- /tests/t3028.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3028.nwt -------------------------------------------------------------------------------- /tests/t3029.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3029.nwt -------------------------------------------------------------------------------- /tests/t3030.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3030.nwt -------------------------------------------------------------------------------- /tests/t3031.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3031.nwt -------------------------------------------------------------------------------- /tests/t3032.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3032.nwt -------------------------------------------------------------------------------- /tests/t3033.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3033.nwt -------------------------------------------------------------------------------- /tests/t3100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3100.nwt -------------------------------------------------------------------------------- /tests/t3101.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3101.nwt -------------------------------------------------------------------------------- /tests/t3105.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3105.nwt -------------------------------------------------------------------------------- /tests/t3124.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3124.nwt -------------------------------------------------------------------------------- /tests/t3125.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3125.nwt -------------------------------------------------------------------------------- /tests/t3126.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3126.nwt -------------------------------------------------------------------------------- /tests/t3127.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3127.nwt -------------------------------------------------------------------------------- /tests/t3130.nwt: -------------------------------------------------------------------------------- 1 | a { 2 | b: int 3 | } 4 | 5 | v:=@a with { b = t } 6 | -------------------------------------------------------------------------------- /tests/t3131.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3131.nwt -------------------------------------------------------------------------------- /tests/t3132.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3132.nwt -------------------------------------------------------------------------------- /tests/t3133.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3133.nwt -------------------------------------------------------------------------------- /tests/t3134.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3134.nwt -------------------------------------------------------------------------------- /tests/t3135.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t3135.nwt -------------------------------------------------------------------------------- /tests/t3136.nwt: -------------------------------------------------------------------------------- 1 | coord { 2 | x:int 3 | } 4 | 5 | c:= @coord.x with { x = 3 } 6 | -------------------------------------------------------------------------------- /tests/t4000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t4000.nwt -------------------------------------------------------------------------------- /tests/t4001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t4001.nwt -------------------------------------------------------------------------------- /tests/t4002.nwt: -------------------------------------------------------------------------------- 1 | a := 10 % 0 2 | -------------------------------------------------------------------------------- /tests/t4003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t4003.nwt -------------------------------------------------------------------------------- /tests/t5000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5000.nwt -------------------------------------------------------------------------------- /tests/t5001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5001.nwt -------------------------------------------------------------------------------- /tests/t5002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5002.nwt -------------------------------------------------------------------------------- /tests/t5003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5003.nwt -------------------------------------------------------------------------------- /tests/t5004.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5004.nwt -------------------------------------------------------------------------------- /tests/t5005.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5005.nwt -------------------------------------------------------------------------------- /tests/t5006.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5006.nwt -------------------------------------------------------------------------------- /tests/t5007.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5007.nwt -------------------------------------------------------------------------------- /tests/t5008.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5008.nwt -------------------------------------------------------------------------------- /tests/t5009.nwt: -------------------------------------------------------------------------------- 1 | f:(int) -> string 2 | 3 | x:= f(3) -------------------------------------------------------------------------------- /tests/t5010.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5010.nwt -------------------------------------------------------------------------------- /tests/t5011.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5011.nwt -------------------------------------------------------------------------------- /tests/t5012.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5012.nwt -------------------------------------------------------------------------------- /tests/t5013.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5013.nwt -------------------------------------------------------------------------------- /tests/t5014.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5014.nwt -------------------------------------------------------------------------------- /tests/t5015.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5015.nwt -------------------------------------------------------------------------------- /tests/t5016.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5016.nwt -------------------------------------------------------------------------------- /tests/t5017.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5017.nwt -------------------------------------------------------------------------------- /tests/t5020.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5020.nwt -------------------------------------------------------------------------------- /tests/t5021.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5021.nwt -------------------------------------------------------------------------------- /tests/t5022.nwt: -------------------------------------------------------------------------------- 1 | fun := (a:int) -> nil { 2 | print(a) 3 | } 4 | 5 | fun(3) 6 | -------------------------------------------------------------------------------- /tests/t5040.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5040.nwt -------------------------------------------------------------------------------- /tests/t5041.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5041.nwt -------------------------------------------------------------------------------- /tests/t5042.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5042.nwt -------------------------------------------------------------------------------- /tests/t5043.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5043.nwt -------------------------------------------------------------------------------- /tests/t5044.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5044.nwt -------------------------------------------------------------------------------- /tests/t5045.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5045.nwt -------------------------------------------------------------------------------- /tests/t5046.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5046.nwt -------------------------------------------------------------------------------- /tests/t5047.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5047.nwt -------------------------------------------------------------------------------- /tests/t5050.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5050.nwt -------------------------------------------------------------------------------- /tests/t5051.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5051.nwt -------------------------------------------------------------------------------- /tests/t5052.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5052.nwt -------------------------------------------------------------------------------- /tests/t5053.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5053.nwt -------------------------------------------------------------------------------- /tests/t5062.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5062.nwt -------------------------------------------------------------------------------- /tests/t5063.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5063.nwt -------------------------------------------------------------------------------- /tests/t5064.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5064.nwt -------------------------------------------------------------------------------- /tests/t5065.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5065.nwt -------------------------------------------------------------------------------- /tests/t5067.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5067.nwt -------------------------------------------------------------------------------- /tests/t5068.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5068.nwt -------------------------------------------------------------------------------- /tests/t5069.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5069.nwt -------------------------------------------------------------------------------- /tests/t5070.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5070.nwt -------------------------------------------------------------------------------- /tests/t5100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5100.nwt -------------------------------------------------------------------------------- /tests/t5101.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5101.nwt -------------------------------------------------------------------------------- /tests/t5102.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5102.nwt -------------------------------------------------------------------------------- /tests/t5103.nwt: -------------------------------------------------------------------------------- 1 | //test undefined function 2 | a(3, 4) -------------------------------------------------------------------------------- /tests/t5104.nwt: -------------------------------------------------------------------------------- 1 | a := 42 2 | 3 | a(3, 2) -------------------------------------------------------------------------------- /tests/t5105.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5105.nwt -------------------------------------------------------------------------------- /tests/t5106.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5106.nwt -------------------------------------------------------------------------------- /tests/t5107.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5107.nwt -------------------------------------------------------------------------------- /tests/t5108.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5108.nwt -------------------------------------------------------------------------------- /tests/t5109.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5109.nwt -------------------------------------------------------------------------------- /tests/t5110.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5110.nwt -------------------------------------------------------------------------------- /tests/t5111.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5111.nwt -------------------------------------------------------------------------------- /tests/t5112.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5112.nwt -------------------------------------------------------------------------------- /tests/t5121.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5121.nwt -------------------------------------------------------------------------------- /tests/t5122.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5122.nwt -------------------------------------------------------------------------------- /tests/t5123.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5123.nwt -------------------------------------------------------------------------------- /tests/t5125.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5125.nwt -------------------------------------------------------------------------------- /tests/t5126.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5126.nwt -------------------------------------------------------------------------------- /tests/t5127.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5127.nwt -------------------------------------------------------------------------------- /tests/t5140.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5140.nwt -------------------------------------------------------------------------------- /tests/t5160.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5160.nwt -------------------------------------------------------------------------------- /tests/t5161.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5161.nwt -------------------------------------------------------------------------------- /tests/t5162.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5162.nwt -------------------------------------------------------------------------------- /tests/t5163.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5163.nwt -------------------------------------------------------------------------------- /tests/t5166.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5166.nwt -------------------------------------------------------------------------------- /tests/t5167.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5167.nwt -------------------------------------------------------------------------------- /tests/t5168.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5168.nwt -------------------------------------------------------------------------------- /tests/t5169.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5169.nwt -------------------------------------------------------------------------------- /tests/t5170.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5170.nwt -------------------------------------------------------------------------------- /tests/t5171.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5171.nwt -------------------------------------------------------------------------------- /tests/t5172.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t5172.nwt -------------------------------------------------------------------------------- /tests/t6000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6000.nwt -------------------------------------------------------------------------------- /tests/t6001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6001.nwt -------------------------------------------------------------------------------- /tests/t6002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6002.nwt -------------------------------------------------------------------------------- /tests/t6003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6003.nwt -------------------------------------------------------------------------------- /tests/t6004.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6004.nwt -------------------------------------------------------------------------------- /tests/t6005.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6005.nwt -------------------------------------------------------------------------------- /tests/t6006.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6006.nwt -------------------------------------------------------------------------------- /tests/t6007.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6007.nwt -------------------------------------------------------------------------------- /tests/t6008.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6008.nwt -------------------------------------------------------------------------------- /tests/t6009.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6009.nwt -------------------------------------------------------------------------------- /tests/t6010.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6010.nwt -------------------------------------------------------------------------------- /tests/t6011.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6011.nwt -------------------------------------------------------------------------------- /tests/t6012.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6012.nwt -------------------------------------------------------------------------------- /tests/t6015.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6015.nwt -------------------------------------------------------------------------------- /tests/t6016.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6016.nwt -------------------------------------------------------------------------------- /tests/t6017.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6017.nwt -------------------------------------------------------------------------------- /tests/t6018.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6018.nwt -------------------------------------------------------------------------------- /tests/t6019.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6019.nwt -------------------------------------------------------------------------------- /tests/t6025.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6025.nwt -------------------------------------------------------------------------------- /tests/t6026.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6026.nwt -------------------------------------------------------------------------------- /tests/t6027.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6027.nwt -------------------------------------------------------------------------------- /tests/t6028.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6028.nwt -------------------------------------------------------------------------------- /tests/t6029.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6029.nwt -------------------------------------------------------------------------------- /tests/t6030.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6030.nwt -------------------------------------------------------------------------------- /tests/t6031.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6031.nwt -------------------------------------------------------------------------------- /tests/t6032.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6032.nwt -------------------------------------------------------------------------------- /tests/t6033.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6033.nwt -------------------------------------------------------------------------------- /tests/t6034.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6034.nwt -------------------------------------------------------------------------------- /tests/t6040.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6040.nwt -------------------------------------------------------------------------------- /tests/t6050.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6050.nwt -------------------------------------------------------------------------------- /tests/t6051.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6051.nwt -------------------------------------------------------------------------------- /tests/t6052.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6052.nwt -------------------------------------------------------------------------------- /tests/t6053.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6053.nwt -------------------------------------------------------------------------------- /tests/t6054.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6054.nwt -------------------------------------------------------------------------------- /tests/t6055.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6055.nwt -------------------------------------------------------------------------------- /tests/t6056.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6056.nwt -------------------------------------------------------------------------------- /tests/t6057.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6057.nwt -------------------------------------------------------------------------------- /tests/t6059.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6059.nwt -------------------------------------------------------------------------------- /tests/t6060.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6060.nwt -------------------------------------------------------------------------------- /tests/t6061.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6061.nwt -------------------------------------------------------------------------------- /tests/t6062.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6062.nwt -------------------------------------------------------------------------------- /tests/t6063.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6063.nwt -------------------------------------------------------------------------------- /tests/t6064.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6064.nwt -------------------------------------------------------------------------------- /tests/t6065.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6065.nwt -------------------------------------------------------------------------------- /tests/t6066.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6066.nwt -------------------------------------------------------------------------------- /tests/t6067.nwt: -------------------------------------------------------------------------------- 1 | # test maybe nil 2 | r:nil? -------------------------------------------------------------------------------- /tests/t6100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6100.nwt -------------------------------------------------------------------------------- /tests/t6101.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6101.nwt -------------------------------------------------------------------------------- /tests/t6102.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6102.nwt -------------------------------------------------------------------------------- /tests/t6103.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6103.nwt -------------------------------------------------------------------------------- /tests/t6104.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6104.nwt -------------------------------------------------------------------------------- /tests/t6105.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6105.nwt -------------------------------------------------------------------------------- /tests/t6106.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6106.nwt -------------------------------------------------------------------------------- /tests/t6107.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6107.nwt -------------------------------------------------------------------------------- /tests/t6108.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6108.nwt -------------------------------------------------------------------------------- /tests/t6109.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6109.nwt -------------------------------------------------------------------------------- /tests/t6110.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6110.nwt -------------------------------------------------------------------------------- /tests/t6111.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6111.nwt -------------------------------------------------------------------------------- /tests/t6112.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6112.nwt -------------------------------------------------------------------------------- /tests/t6113.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6113.nwt -------------------------------------------------------------------------------- /tests/t6114.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6114.nwt -------------------------------------------------------------------------------- /tests/t6115.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6115.nwt -------------------------------------------------------------------------------- /tests/t6134.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6134.nwt -------------------------------------------------------------------------------- /tests/t6150.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6150.nwt -------------------------------------------------------------------------------- /tests/t6151.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6151.nwt -------------------------------------------------------------------------------- /tests/t6200.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6200.nwt -------------------------------------------------------------------------------- /tests/t6201.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6201.nwt -------------------------------------------------------------------------------- /tests/t6202.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6202.nwt -------------------------------------------------------------------------------- /tests/t6203.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6203.nwt -------------------------------------------------------------------------------- /tests/t6204.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6204.nwt -------------------------------------------------------------------------------- /tests/t6205.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6205.nwt -------------------------------------------------------------------------------- /tests/t6206.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6206.nwt -------------------------------------------------------------------------------- /tests/t6207.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6207.nwt -------------------------------------------------------------------------------- /tests/t6208.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6208.nwt -------------------------------------------------------------------------------- /tests/t6209.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6209.nwt -------------------------------------------------------------------------------- /tests/t6210.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6210.nwt -------------------------------------------------------------------------------- /tests/t6300.nwt: -------------------------------------------------------------------------------- 1 | #test basic Maybe declaration 2 | v:int? -------------------------------------------------------------------------------- /tests/t6301.nwt: -------------------------------------------------------------------------------- 1 | #test basic Maybe declaration with assignment 2 | v:int? = 3 -------------------------------------------------------------------------------- /tests/t6302.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6302.nwt -------------------------------------------------------------------------------- /tests/t6303.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6303.nwt -------------------------------------------------------------------------------- /tests/t6304.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6304.nwt -------------------------------------------------------------------------------- /tests/t6305.nwt: -------------------------------------------------------------------------------- 1 | #test re-assignment of Maybe 2 | a:int? = 3 3 | a = 5 -------------------------------------------------------------------------------- /tests/t6306.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6306.nwt -------------------------------------------------------------------------------- /tests/t6307.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6307.nwt -------------------------------------------------------------------------------- /tests/t6308.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6308.nwt -------------------------------------------------------------------------------- /tests/t6309.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6309.nwt -------------------------------------------------------------------------------- /tests/t6310.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6310.nwt -------------------------------------------------------------------------------- /tests/t6311.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6311.nwt -------------------------------------------------------------------------------- /tests/t6312.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6312.nwt -------------------------------------------------------------------------------- /tests/t6313.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6313.nwt -------------------------------------------------------------------------------- /tests/t6314.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6314.nwt -------------------------------------------------------------------------------- /tests/t6350.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6350.nwt -------------------------------------------------------------------------------- /tests/t6351.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6351.nwt -------------------------------------------------------------------------------- /tests/t6400.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6400.nwt -------------------------------------------------------------------------------- /tests/t6401.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t6401.nwt -------------------------------------------------------------------------------- /tests/t7000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7000.nwt -------------------------------------------------------------------------------- /tests/t7001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7001.nwt -------------------------------------------------------------------------------- /tests/t7002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7002.nwt -------------------------------------------------------------------------------- /tests/t7003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7003.nwt -------------------------------------------------------------------------------- /tests/t7004.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7004.nwt -------------------------------------------------------------------------------- /tests/t7005.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7005.nwt -------------------------------------------------------------------------------- /tests/t7006.nwt: -------------------------------------------------------------------------------- 1 | v := nil -------------------------------------------------------------------------------- /tests/t7007.nwt: -------------------------------------------------------------------------------- 1 | # test invalid re-assignment of nil 2 | nil = 3 -------------------------------------------------------------------------------- /tests/t7008.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7008.nwt -------------------------------------------------------------------------------- /tests/t7009.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7009.nwt -------------------------------------------------------------------------------- /tests/t7010.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7010.nwt -------------------------------------------------------------------------------- /tests/t7011.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7011.nwt -------------------------------------------------------------------------------- /tests/t7012.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7012.nwt -------------------------------------------------------------------------------- /tests/t7013.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7013.nwt -------------------------------------------------------------------------------- /tests/t7014.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7014.nwt -------------------------------------------------------------------------------- /tests/t7015.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7015.nwt -------------------------------------------------------------------------------- /tests/t7016.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7016.nwt -------------------------------------------------------------------------------- /tests/t7017.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7017.nwt -------------------------------------------------------------------------------- /tests/t7018.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7018.nwt -------------------------------------------------------------------------------- /tests/t7019.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7019.nwt -------------------------------------------------------------------------------- /tests/t7020.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7020.nwt -------------------------------------------------------------------------------- /tests/t7021.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7021.nwt -------------------------------------------------------------------------------- /tests/t7022.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7022.nwt -------------------------------------------------------------------------------- /tests/t7023.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7023.nwt -------------------------------------------------------------------------------- /tests/t7024.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7024.nwt -------------------------------------------------------------------------------- /tests/t7025.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7025.nwt -------------------------------------------------------------------------------- /tests/t7026.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7026.nwt -------------------------------------------------------------------------------- /tests/t7027.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7027.nwt -------------------------------------------------------------------------------- /tests/t7100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7100.nwt -------------------------------------------------------------------------------- /tests/t7200.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7200.nwt -------------------------------------------------------------------------------- /tests/t7201.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7201.nwt -------------------------------------------------------------------------------- /tests/t7300.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7300.nwt -------------------------------------------------------------------------------- /tests/t7301.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7301.nwt -------------------------------------------------------------------------------- /tests/t7302.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7302.nwt -------------------------------------------------------------------------------- /tests/t7314.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7314.nwt -------------------------------------------------------------------------------- /tests/t7318.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7318.nwt -------------------------------------------------------------------------------- /tests/t7322.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7322.nwt -------------------------------------------------------------------------------- /tests/t7330.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7330.nwt -------------------------------------------------------------------------------- /tests/t7331.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7331.nwt -------------------------------------------------------------------------------- /tests/t7333.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7333.nwt -------------------------------------------------------------------------------- /tests/t7334.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7334.nwt -------------------------------------------------------------------------------- /tests/t7418.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7418.nwt -------------------------------------------------------------------------------- /tests/t7420.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7420.nwt -------------------------------------------------------------------------------- /tests/t7421.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7421.nwt -------------------------------------------------------------------------------- /tests/t7422.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7422.nwt -------------------------------------------------------------------------------- /tests/t7430.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7430.nwt -------------------------------------------------------------------------------- /tests/t7431.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7431.nwt -------------------------------------------------------------------------------- /tests/t7432.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7432.nwt -------------------------------------------------------------------------------- /tests/t7433.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7433.nwt -------------------------------------------------------------------------------- /tests/t7434.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t7434.nwt -------------------------------------------------------------------------------- /tests/t8000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8000.nwt -------------------------------------------------------------------------------- /tests/t8001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8001.nwt -------------------------------------------------------------------------------- /tests/t8002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8002.nwt -------------------------------------------------------------------------------- /tests/t8003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8003.nwt -------------------------------------------------------------------------------- /tests/t8010.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8010.nwt -------------------------------------------------------------------------------- /tests/t8011.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8011.nwt -------------------------------------------------------------------------------- /tests/t8012.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8012.nwt -------------------------------------------------------------------------------- /tests/t8100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8100.nwt -------------------------------------------------------------------------------- /tests/t8101.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8101.nwt -------------------------------------------------------------------------------- /tests/t8102.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8102.nwt -------------------------------------------------------------------------------- /tests/t8103.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t8103.nwt -------------------------------------------------------------------------------- /tests/t9000.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9000.nwt -------------------------------------------------------------------------------- /tests/t9001.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9001.nwt -------------------------------------------------------------------------------- /tests/t9002.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9002.nwt -------------------------------------------------------------------------------- /tests/t9003.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9003.nwt -------------------------------------------------------------------------------- /tests/t9004.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9004.nwt -------------------------------------------------------------------------------- /tests/t9020.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9020.nwt -------------------------------------------------------------------------------- /tests/t9030.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9030.nwt -------------------------------------------------------------------------------- /tests/t9031.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9031.nwt -------------------------------------------------------------------------------- /tests/t9032.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9032.nwt -------------------------------------------------------------------------------- /tests/t9033.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9033.nwt -------------------------------------------------------------------------------- /tests/t9100.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9100.nwt -------------------------------------------------------------------------------- /tests/t9101.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9101.nwt -------------------------------------------------------------------------------- /tests/t9102.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9102.nwt -------------------------------------------------------------------------------- /tests/t9103.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9103.nwt -------------------------------------------------------------------------------- /tests/t9104.nwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cqcallaw/newt/HEAD/tests/t9104.nwt --------------------------------------------------------------------------------