├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── examples ├── README.md ├── factorial.ark ├── higher_or_lower.ark ├── pi_monte_carlo.ark ├── prime.ark └── vm.ark ├── lib ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── design.md ├── std │ ├── adt │ │ ├── hashmap.ark │ │ ├── linkedlist.ark │ │ ├── list.ark │ │ └── stack.ark │ ├── io │ │ ├── file.ark │ │ ├── path.ark │ │ └── println.ark │ ├── mem │ │ ├── mem.ark │ │ └── raw.ark │ ├── rand │ │ └── pcg.ark │ ├── strings │ │ ├── string.ark │ │ └── util.ark │ └── unicode │ │ └── utf8 │ │ └── coding.ark └── tests │ ├── test-dynamic-string.ark │ ├── test-fileio.ark │ ├── test-hashmap.ark │ ├── test-linkedlist.ark │ ├── test-regex.ark │ ├── test-stack.ark │ ├── test-string.ark │ ├── test-utf8.ark │ └── test.ark ├── src ├── ast │ ├── ast.go │ ├── constructor.go │ ├── dependency.go │ ├── inference.go │ ├── mangle.go │ ├── misc.go │ ├── module.go │ ├── primitivetype_string.go │ ├── resolve.go │ ├── runtime.go │ ├── scope.go │ ├── type.go │ └── visitor.go ├── cmd │ ├── ark-testrunner │ │ └── main.go │ └── ark │ │ ├── args.go │ │ ├── main.go │ │ └── runtime.go ├── codegen │ ├── LLVMCodegen │ │ ├── binary.go │ │ ├── codegen.go │ │ └── type.go │ └── codegen.go ├── doc │ ├── decl.go │ ├── doc.go │ ├── file.go │ ├── index.go │ ├── markdown.go │ └── style.go ├── lexer │ ├── lexer.go │ ├── sourcefile.go │ └── token.go ├── parser │ ├── attr.go │ ├── binoptype_string.go │ ├── keywords.go │ ├── misc.go │ ├── operators.go │ ├── parse_tree.go │ ├── parser.go │ └── unoptype_string.go ├── semantic │ ├── attributes.go │ ├── break_next.go │ ├── deprecated.go │ ├── immutable_assign.go │ ├── misc.go │ ├── recursive.go │ ├── reference.go │ ├── semantic.go │ ├── type.go │ ├── unreachable.go │ ├── unused.go │ └── use_before_declare.go └── util │ ├── color.go │ ├── exitstatus.go │ ├── log │ ├── log.go │ └── timed.go │ └── misc.go ├── tests ├── args.ark ├── args.toml ├── arrays │ ├── array.ark │ ├── array.toml │ ├── array_bound.ark │ ├── array_bound.toml │ ├── array_global.ark │ ├── array_global.toml │ ├── array_len.ark │ └── array_len.toml ├── assign.ark ├── assign.toml ├── binop_assign.ark ├── binop_assign.toml ├── bool.ark ├── bool.toml ├── c_ints.ark ├── c_ints.toml ├── call_conv.ark ├── call_conv.toml ├── cast.ark ├── cast.toml ├── cast_call_ambiguity.ark ├── cast_call_ambiguity.toml ├── constant_ref.ark ├── constant_ref.toml ├── defer.ark ├── defer.toml ├── deref.ark ├── deref.toml ├── destructuring_assign.ark ├── destructuring_assign.toml ├── enum.ark ├── enum.toml ├── enum_union.ark ├── enum_union.toml ├── fibonacci.ark ├── fibonacci.toml ├── fizzbuzz.ark ├── fizzbuzz.toml ├── float_ops.ark ├── float_ops.toml ├── float_suffix.ark ├── float_suffix.toml ├── for.ark ├── for.toml ├── for_conditional.ark ├── for_conditional.toml ├── func.ark ├── func.toml ├── func_inline.ark ├── func_inline.toml ├── func_pointer.ark ├── func_pointer.toml ├── func_type_mismatch.ark ├── func_type_mismatch.toml ├── generic.ark ├── generic.toml ├── generic_inferrence.ark ├── generic_inferrence.toml ├── generic_member.ark ├── generic_member.toml ├── global.ark ├── global.toml ├── if.ark ├── if.toml ├── int_lit_overflow.ark ├── int_lit_overflow.toml ├── interface.ark ├── interface.toml ├── issues │ ├── 719.ark │ ├── 719.toml │ ├── 720.ark │ └── 720.toml ├── iterator.ark ├── iterator.toml ├── main.ark ├── main.toml ├── match.ark ├── match.toml ├── method.ark ├── method.toml ├── mutable_ref.ark ├── mutable_ref.toml ├── named_types.ark ├── named_types.toml ├── nested_comment.ark ├── nested_comment.toml ├── nested_scope.ark ├── nested_scope.toml ├── novoid.ark ├── novoid.toml ├── option.ark ├── option.toml ├── ownership.ark ├── ownership.toml ├── pointer.ark ├── pointer.toml ├── pointer_index.ark ├── pointer_index.toml ├── prime_sieve.ark ├── prime_sieve.toml ├── prototype.ark ├── prototype.toml ├── recursive.ark ├── recursive.toml ├── reference.ark ├── reference.toml ├── scanf_test.ark ├── scanf_test.toml ├── single_line_func.ark ├── single_line_func.toml ├── single_stat_func.ark ├── single_stat_func.toml ├── sizeof.ark ├── sizeof.toml ├── stdform_nums.ark ├── stdform_nums.toml ├── stdlib │ ├── list.ark │ ├── list.toml │ ├── random.ark │ ├── random.toml │ ├── utf8.ark │ └── utf8.toml ├── string.ark ├── string.toml ├── struct.ark ├── struct.toml ├── tuple.ark ├── tuple.toml ├── unused_func.ark ├── unused_var.ark ├── variable_shadow.ark ├── variable_shadow.toml ├── variable_zeroing.ark ├── variable_zeroing.toml ├── variadic.ark └── variadic.toml └── tools └── make-test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/factorial.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/examples/factorial.ark -------------------------------------------------------------------------------- /examples/higher_or_lower.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/examples/higher_or_lower.ark -------------------------------------------------------------------------------- /examples/pi_monte_carlo.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/examples/pi_monte_carlo.ark -------------------------------------------------------------------------------- /examples/prime.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/examples/prime.ark -------------------------------------------------------------------------------- /examples/vm.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/examples/vm.ark -------------------------------------------------------------------------------- /lib/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/CONTRIBUTING.md -------------------------------------------------------------------------------- /lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/LICENSE -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/design.md -------------------------------------------------------------------------------- /lib/std/adt/hashmap.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/adt/hashmap.ark -------------------------------------------------------------------------------- /lib/std/adt/linkedlist.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/adt/linkedlist.ark -------------------------------------------------------------------------------- /lib/std/adt/list.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/adt/list.ark -------------------------------------------------------------------------------- /lib/std/adt/stack.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/adt/stack.ark -------------------------------------------------------------------------------- /lib/std/io/file.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/io/file.ark -------------------------------------------------------------------------------- /lib/std/io/path.ark: -------------------------------------------------------------------------------- 1 | // TODO path utility funcs? -------------------------------------------------------------------------------- /lib/std/io/println.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/io/println.ark -------------------------------------------------------------------------------- /lib/std/mem/mem.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/mem/mem.ark -------------------------------------------------------------------------------- /lib/std/mem/raw.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/mem/raw.ark -------------------------------------------------------------------------------- /lib/std/rand/pcg.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/rand/pcg.ark -------------------------------------------------------------------------------- /lib/std/strings/string.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/strings/string.ark -------------------------------------------------------------------------------- /lib/std/strings/util.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/strings/util.ark -------------------------------------------------------------------------------- /lib/std/unicode/utf8/coding.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/std/unicode/utf8/coding.ark -------------------------------------------------------------------------------- /lib/tests/test-dynamic-string.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/tests/test-dynamic-string.ark -------------------------------------------------------------------------------- /lib/tests/test-fileio.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/tests/test-fileio.ark -------------------------------------------------------------------------------- /lib/tests/test-hashmap.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/tests/test-hashmap.ark -------------------------------------------------------------------------------- /lib/tests/test-linkedlist.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/tests/test-linkedlist.ark -------------------------------------------------------------------------------- /lib/tests/test-regex.ark: -------------------------------------------------------------------------------- 1 | #use std::regex 2 | 3 | pub func main() -> int { 4 | 5 | return 0; 6 | } -------------------------------------------------------------------------------- /lib/tests/test-stack.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/tests/test-stack.ark -------------------------------------------------------------------------------- /lib/tests/test-string.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/tests/test-string.ark -------------------------------------------------------------------------------- /lib/tests/test-utf8.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/lib/tests/test-utf8.ark -------------------------------------------------------------------------------- /lib/tests/test.ark: -------------------------------------------------------------------------------- 1 | #use std::io 2 | 3 | pub func main() -> int { 4 | io::println("hello world"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /src/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/ast.go -------------------------------------------------------------------------------- /src/ast/constructor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/constructor.go -------------------------------------------------------------------------------- /src/ast/dependency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/dependency.go -------------------------------------------------------------------------------- /src/ast/inference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/inference.go -------------------------------------------------------------------------------- /src/ast/mangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/mangle.go -------------------------------------------------------------------------------- /src/ast/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/misc.go -------------------------------------------------------------------------------- /src/ast/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/module.go -------------------------------------------------------------------------------- /src/ast/primitivetype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/primitivetype_string.go -------------------------------------------------------------------------------- /src/ast/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/resolve.go -------------------------------------------------------------------------------- /src/ast/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/runtime.go -------------------------------------------------------------------------------- /src/ast/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/scope.go -------------------------------------------------------------------------------- /src/ast/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/type.go -------------------------------------------------------------------------------- /src/ast/visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/ast/visitor.go -------------------------------------------------------------------------------- /src/cmd/ark-testrunner/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/cmd/ark-testrunner/main.go -------------------------------------------------------------------------------- /src/cmd/ark/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/cmd/ark/args.go -------------------------------------------------------------------------------- /src/cmd/ark/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/cmd/ark/main.go -------------------------------------------------------------------------------- /src/cmd/ark/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/cmd/ark/runtime.go -------------------------------------------------------------------------------- /src/codegen/LLVMCodegen/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/codegen/LLVMCodegen/binary.go -------------------------------------------------------------------------------- /src/codegen/LLVMCodegen/codegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/codegen/LLVMCodegen/codegen.go -------------------------------------------------------------------------------- /src/codegen/LLVMCodegen/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/codegen/LLVMCodegen/type.go -------------------------------------------------------------------------------- /src/codegen/codegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/codegen/codegen.go -------------------------------------------------------------------------------- /src/doc/decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/doc/decl.go -------------------------------------------------------------------------------- /src/doc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/doc/doc.go -------------------------------------------------------------------------------- /src/doc/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/doc/file.go -------------------------------------------------------------------------------- /src/doc/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/doc/index.go -------------------------------------------------------------------------------- /src/doc/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/doc/markdown.go -------------------------------------------------------------------------------- /src/doc/style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/doc/style.go -------------------------------------------------------------------------------- /src/lexer/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/lexer/lexer.go -------------------------------------------------------------------------------- /src/lexer/sourcefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/lexer/sourcefile.go -------------------------------------------------------------------------------- /src/lexer/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/lexer/token.go -------------------------------------------------------------------------------- /src/parser/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/parser/attr.go -------------------------------------------------------------------------------- /src/parser/binoptype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/parser/binoptype_string.go -------------------------------------------------------------------------------- /src/parser/keywords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/parser/keywords.go -------------------------------------------------------------------------------- /src/parser/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/parser/misc.go -------------------------------------------------------------------------------- /src/parser/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/parser/operators.go -------------------------------------------------------------------------------- /src/parser/parse_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/parser/parse_tree.go -------------------------------------------------------------------------------- /src/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/parser/parser.go -------------------------------------------------------------------------------- /src/parser/unoptype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/parser/unoptype_string.go -------------------------------------------------------------------------------- /src/semantic/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/attributes.go -------------------------------------------------------------------------------- /src/semantic/break_next.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/break_next.go -------------------------------------------------------------------------------- /src/semantic/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/deprecated.go -------------------------------------------------------------------------------- /src/semantic/immutable_assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/immutable_assign.go -------------------------------------------------------------------------------- /src/semantic/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/misc.go -------------------------------------------------------------------------------- /src/semantic/recursive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/recursive.go -------------------------------------------------------------------------------- /src/semantic/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/reference.go -------------------------------------------------------------------------------- /src/semantic/semantic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/semantic.go -------------------------------------------------------------------------------- /src/semantic/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/type.go -------------------------------------------------------------------------------- /src/semantic/unreachable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/unreachable.go -------------------------------------------------------------------------------- /src/semantic/unused.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/unused.go -------------------------------------------------------------------------------- /src/semantic/use_before_declare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/semantic/use_before_declare.go -------------------------------------------------------------------------------- /src/util/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/util/color.go -------------------------------------------------------------------------------- /src/util/exitstatus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/util/exitstatus.go -------------------------------------------------------------------------------- /src/util/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/util/log/log.go -------------------------------------------------------------------------------- /src/util/log/timed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/util/log/timed.go -------------------------------------------------------------------------------- /src/util/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/src/util/misc.go -------------------------------------------------------------------------------- /tests/args.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/args.ark -------------------------------------------------------------------------------- /tests/args.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/args.toml -------------------------------------------------------------------------------- /tests/arrays/array.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/arrays/array.ark -------------------------------------------------------------------------------- /tests/arrays/array.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/arrays/array.toml -------------------------------------------------------------------------------- /tests/arrays/array_bound.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/arrays/array_bound.ark -------------------------------------------------------------------------------- /tests/arrays/array_bound.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/arrays/array_bound.toml -------------------------------------------------------------------------------- /tests/arrays/array_global.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/arrays/array_global.ark -------------------------------------------------------------------------------- /tests/arrays/array_global.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/arrays/array_global.toml -------------------------------------------------------------------------------- /tests/arrays/array_len.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/arrays/array_len.ark -------------------------------------------------------------------------------- /tests/arrays/array_len.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/arrays/array_len.toml -------------------------------------------------------------------------------- /tests/assign.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/assign.ark -------------------------------------------------------------------------------- /tests/assign.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/assign.toml -------------------------------------------------------------------------------- /tests/binop_assign.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/binop_assign.ark -------------------------------------------------------------------------------- /tests/binop_assign.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/binop_assign.toml -------------------------------------------------------------------------------- /tests/bool.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/bool.ark -------------------------------------------------------------------------------- /tests/bool.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/bool.toml -------------------------------------------------------------------------------- /tests/c_ints.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/c_ints.ark -------------------------------------------------------------------------------- /tests/c_ints.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/c_ints.toml -------------------------------------------------------------------------------- /tests/call_conv.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/call_conv.ark -------------------------------------------------------------------------------- /tests/call_conv.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/call_conv.toml -------------------------------------------------------------------------------- /tests/cast.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/cast.ark -------------------------------------------------------------------------------- /tests/cast.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/cast.toml -------------------------------------------------------------------------------- /tests/cast_call_ambiguity.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/cast_call_ambiguity.ark -------------------------------------------------------------------------------- /tests/cast_call_ambiguity.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/cast_call_ambiguity.toml -------------------------------------------------------------------------------- /tests/constant_ref.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/constant_ref.ark -------------------------------------------------------------------------------- /tests/constant_ref.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/constant_ref.toml -------------------------------------------------------------------------------- /tests/defer.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/defer.ark -------------------------------------------------------------------------------- /tests/defer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/defer.toml -------------------------------------------------------------------------------- /tests/deref.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/deref.ark -------------------------------------------------------------------------------- /tests/deref.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/deref.toml -------------------------------------------------------------------------------- /tests/destructuring_assign.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/destructuring_assign.ark -------------------------------------------------------------------------------- /tests/destructuring_assign.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/destructuring_assign.toml -------------------------------------------------------------------------------- /tests/enum.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/enum.ark -------------------------------------------------------------------------------- /tests/enum.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/enum.toml -------------------------------------------------------------------------------- /tests/enum_union.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/enum_union.ark -------------------------------------------------------------------------------- /tests/enum_union.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/enum_union.toml -------------------------------------------------------------------------------- /tests/fibonacci.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/fibonacci.ark -------------------------------------------------------------------------------- /tests/fibonacci.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/fibonacci.toml -------------------------------------------------------------------------------- /tests/fizzbuzz.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/fizzbuzz.ark -------------------------------------------------------------------------------- /tests/fizzbuzz.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/fizzbuzz.toml -------------------------------------------------------------------------------- /tests/float_ops.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/float_ops.ark -------------------------------------------------------------------------------- /tests/float_ops.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/float_ops.toml -------------------------------------------------------------------------------- /tests/float_suffix.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/float_suffix.ark -------------------------------------------------------------------------------- /tests/float_suffix.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/float_suffix.toml -------------------------------------------------------------------------------- /tests/for.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/for.ark -------------------------------------------------------------------------------- /tests/for.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/for.toml -------------------------------------------------------------------------------- /tests/for_conditional.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/for_conditional.ark -------------------------------------------------------------------------------- /tests/for_conditional.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/for_conditional.toml -------------------------------------------------------------------------------- /tests/func.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/func.ark -------------------------------------------------------------------------------- /tests/func.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/func.toml -------------------------------------------------------------------------------- /tests/func_inline.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/func_inline.ark -------------------------------------------------------------------------------- /tests/func_inline.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/func_inline.toml -------------------------------------------------------------------------------- /tests/func_pointer.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/func_pointer.ark -------------------------------------------------------------------------------- /tests/func_pointer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/func_pointer.toml -------------------------------------------------------------------------------- /tests/func_type_mismatch.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/func_type_mismatch.ark -------------------------------------------------------------------------------- /tests/func_type_mismatch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/func_type_mismatch.toml -------------------------------------------------------------------------------- /tests/generic.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/generic.ark -------------------------------------------------------------------------------- /tests/generic.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/generic.toml -------------------------------------------------------------------------------- /tests/generic_inferrence.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/generic_inferrence.ark -------------------------------------------------------------------------------- /tests/generic_inferrence.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/generic_inferrence.toml -------------------------------------------------------------------------------- /tests/generic_member.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/generic_member.ark -------------------------------------------------------------------------------- /tests/generic_member.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/generic_member.toml -------------------------------------------------------------------------------- /tests/global.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/global.ark -------------------------------------------------------------------------------- /tests/global.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/global.toml -------------------------------------------------------------------------------- /tests/if.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/if.ark -------------------------------------------------------------------------------- /tests/if.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/if.toml -------------------------------------------------------------------------------- /tests/int_lit_overflow.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/int_lit_overflow.ark -------------------------------------------------------------------------------- /tests/int_lit_overflow.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/int_lit_overflow.toml -------------------------------------------------------------------------------- /tests/interface.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/interface.ark -------------------------------------------------------------------------------- /tests/interface.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/interface.toml -------------------------------------------------------------------------------- /tests/issues/719.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/issues/719.ark -------------------------------------------------------------------------------- /tests/issues/719.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/issues/719.toml -------------------------------------------------------------------------------- /tests/issues/720.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/issues/720.ark -------------------------------------------------------------------------------- /tests/issues/720.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/issues/720.toml -------------------------------------------------------------------------------- /tests/iterator.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/iterator.ark -------------------------------------------------------------------------------- /tests/iterator.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/iterator.toml -------------------------------------------------------------------------------- /tests/main.ark: -------------------------------------------------------------------------------- 1 | pub func main() -> int { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /tests/main.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/main.toml -------------------------------------------------------------------------------- /tests/match.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/match.ark -------------------------------------------------------------------------------- /tests/match.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/match.toml -------------------------------------------------------------------------------- /tests/method.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/method.ark -------------------------------------------------------------------------------- /tests/method.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/method.toml -------------------------------------------------------------------------------- /tests/mutable_ref.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/mutable_ref.ark -------------------------------------------------------------------------------- /tests/mutable_ref.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/mutable_ref.toml -------------------------------------------------------------------------------- /tests/named_types.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/named_types.ark -------------------------------------------------------------------------------- /tests/named_types.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/named_types.toml -------------------------------------------------------------------------------- /tests/nested_comment.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/nested_comment.ark -------------------------------------------------------------------------------- /tests/nested_comment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/nested_comment.toml -------------------------------------------------------------------------------- /tests/nested_scope.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/nested_scope.ark -------------------------------------------------------------------------------- /tests/nested_scope.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/nested_scope.toml -------------------------------------------------------------------------------- /tests/novoid.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/novoid.ark -------------------------------------------------------------------------------- /tests/novoid.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/novoid.toml -------------------------------------------------------------------------------- /tests/option.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/option.ark -------------------------------------------------------------------------------- /tests/option.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/option.toml -------------------------------------------------------------------------------- /tests/ownership.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/ownership.ark -------------------------------------------------------------------------------- /tests/ownership.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/ownership.toml -------------------------------------------------------------------------------- /tests/pointer.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/pointer.ark -------------------------------------------------------------------------------- /tests/pointer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/pointer.toml -------------------------------------------------------------------------------- /tests/pointer_index.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/pointer_index.ark -------------------------------------------------------------------------------- /tests/pointer_index.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/pointer_index.toml -------------------------------------------------------------------------------- /tests/prime_sieve.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/prime_sieve.ark -------------------------------------------------------------------------------- /tests/prime_sieve.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/prime_sieve.toml -------------------------------------------------------------------------------- /tests/prototype.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/prototype.ark -------------------------------------------------------------------------------- /tests/prototype.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/prototype.toml -------------------------------------------------------------------------------- /tests/recursive.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/recursive.ark -------------------------------------------------------------------------------- /tests/recursive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/recursive.toml -------------------------------------------------------------------------------- /tests/reference.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/reference.ark -------------------------------------------------------------------------------- /tests/reference.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/reference.toml -------------------------------------------------------------------------------- /tests/scanf_test.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/scanf_test.ark -------------------------------------------------------------------------------- /tests/scanf_test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/scanf_test.toml -------------------------------------------------------------------------------- /tests/single_line_func.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/single_line_func.ark -------------------------------------------------------------------------------- /tests/single_line_func.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/single_line_func.toml -------------------------------------------------------------------------------- /tests/single_stat_func.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/single_stat_func.ark -------------------------------------------------------------------------------- /tests/single_stat_func.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/single_stat_func.toml -------------------------------------------------------------------------------- /tests/sizeof.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/sizeof.ark -------------------------------------------------------------------------------- /tests/sizeof.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/sizeof.toml -------------------------------------------------------------------------------- /tests/stdform_nums.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/stdform_nums.ark -------------------------------------------------------------------------------- /tests/stdform_nums.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/stdform_nums.toml -------------------------------------------------------------------------------- /tests/stdlib/list.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/stdlib/list.ark -------------------------------------------------------------------------------- /tests/stdlib/list.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/stdlib/list.toml -------------------------------------------------------------------------------- /tests/stdlib/random.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/stdlib/random.ark -------------------------------------------------------------------------------- /tests/stdlib/random.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/stdlib/random.toml -------------------------------------------------------------------------------- /tests/stdlib/utf8.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/stdlib/utf8.ark -------------------------------------------------------------------------------- /tests/stdlib/utf8.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/stdlib/utf8.toml -------------------------------------------------------------------------------- /tests/string.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/string.ark -------------------------------------------------------------------------------- /tests/string.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/string.toml -------------------------------------------------------------------------------- /tests/struct.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/struct.ark -------------------------------------------------------------------------------- /tests/struct.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/struct.toml -------------------------------------------------------------------------------- /tests/tuple.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/tuple.ark -------------------------------------------------------------------------------- /tests/tuple.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/tuple.toml -------------------------------------------------------------------------------- /tests/unused_func.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/unused_func.ark -------------------------------------------------------------------------------- /tests/unused_var.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/unused_var.ark -------------------------------------------------------------------------------- /tests/variable_shadow.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/variable_shadow.ark -------------------------------------------------------------------------------- /tests/variable_shadow.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/variable_shadow.toml -------------------------------------------------------------------------------- /tests/variable_zeroing.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/variable_zeroing.ark -------------------------------------------------------------------------------- /tests/variable_zeroing.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/variable_zeroing.toml -------------------------------------------------------------------------------- /tests/variadic.ark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/variadic.ark -------------------------------------------------------------------------------- /tests/variadic.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tests/variadic.toml -------------------------------------------------------------------------------- /tools/make-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ark-lang/ark/HEAD/tools/make-test.sh --------------------------------------------------------------------------------