From 00c12289edc5077a2dc619bed003218dea5121a0 Mon Sep 17 00:00:00 2001 From: hanez Date: Thu, 9 Oct 2025 01:59:19 +0200 Subject: [PATCH] URL to project update. No code changes. (0.26.5) --- demo.fun | 2 +- examples/arrays.fun | 2 +- examples/arrays_advanced.fun | 2 +- examples/arrays_iter.fun | 2 +- examples/boolean_decl.fun | 2 +- examples/booleans.fun | 2 +- examples/builtins_conversions.fun | 2 +- examples/builtins_extended.fun | 2 +- examples/builtins_maps_and_more.fun | 2 +- examples/cast_demo.fun | 2 +- examples/class_constructor.fun | 2 +- examples/classes_demo.fun | 2 +- examples/datetime_basic.fun | 2 +- examples/exit_example.fun | 2 +- examples/expressions_test.fun | 2 +- examples/fail.fun | 2 +- examples/file_io.fun | 2 +- examples/file_print_for_file_line_by_line.fun | 2 +- examples/floats.fun | 2 +- examples/for_range_test.fun | 2 +- examples/functions_test.fun | 2 +- examples/have_fun.fun | 2 +- examples/have_fun_function.fun | 2 +- examples/if_else_test.fun | 2 +- examples/include_lib.fun | 2 +- examples/include_local.fun | 2 +- examples/include_local_util.fun | 2 +- examples/include_namespace.fun | 2 +- examples/inheritance_demo.fun | 2 +- examples/input_example.fun | 2 +- examples/loops_break_continue.fun | 2 +- examples/md5_demo.fun | 2 +- examples/namespaced_mod.fun | 2 +- examples/nested_loops.fun | 2 +- examples/objects_basic.fun | 2 +- examples/objects_more.fun | 2 +- examples/os_env.fun | 2 +- examples/pcsc_example.fun | 2 +- examples/process_example.fun | 2 +- examples/regex_demo.fun | 2 +- examples/regex_procedural.fun | 2 +- examples/repl_on_error.fun | 2 +- examples/sha1_demo.fun | 2 +- examples/sha256_demo.fun | 2 +- examples/sha256_str_demo.fun | 2 +- examples/sha384_example.fun | 2 +- examples/sha512_demo.fun | 2 +- examples/sha512_str_demo.fun | 2 +- examples/short_circuit_test.fun | 2 +- examples/signed_ints.fun | 2 +- examples/strings_test.fun | 2 +- examples/tcp_http_get.fun | 2 +- examples/tcp_http_get_class.fun | 2 +- examples/thread_class_example.fun | 2 +- examples/threads_demo.fun | 2 +- examples/try_catch_finally.fun | 2 +- examples/try_catch_with_error.fun | 2 +- examples/type_safety.fun | 2 +- examples/type_safety_fails.fun | 2 +- examples/typeof.fun | 2 +- examples/typeof_features.fun | 2 +- examples/types_integers.fun | 2 +- examples/types_overview.fun | 2 +- examples/uint_types.fun | 2 +- examples/unix_socket_echo.fun | 2 +- examples/while_test.fun | 2 +- extra/examples/pcsc2_example.fun | 2 +- extra/examples/pcsc_demo.fun | 2 +- lib/arrays.fun | 2 +- lib/crypt/md5.fun | 2 +- lib/crypt/md5_legacy.fun | 2 +- lib/crypt/sha1.fun | 2 +- lib/crypt/sha256.fun | 2 +- lib/crypt/sha384.fun | 2 +- lib/crypt/sha512.fun | 2 +- lib/encoding/base64.fun | 2 +- lib/hello.fun | 2 +- lib/hex.fun | 2 +- lib/io/pcsc.fun | 2 +- lib/io/pcsc2.fun | 2 +- lib/io/process.fun | 2 +- lib/io/socket.fun | 2 +- lib/io/thread.fun | 2 +- lib/math.fun | 2 +- lib/regex.fun | 2 +- lib/strings.fun | 2 +- lib/utils/math.fun | 2 +- lib/utils/range.fun | 2 +- play.fun | 2 +- scripts/check_op_includes.py | 2 +- scripts/run_examples.sh | 2 +- src/array_utils.c | 2 +- src/bytecode.c | 2 +- src/bytecode.h | 2 +- src/fun_test.c | 2 +- src/iter.c | 2 +- src/map.c | 2 +- src/parser.c | 2 +- src/parser.h | 2 +- src/parser_utils.c | 2 +- src/pcsc.c | 2 +- src/repl.c | 2 +- src/str_utils.c | 2 +- src/string.c | 2 +- src/test_opcodes.c | 2 +- src/value.c | 2 +- src/value.h | 2 +- src/vm.c | 2 +- src/vm.h | 2 +- src/vm/arithmetic/add.c | 2 +- src/vm/arithmetic/div.c | 2 +- src/vm/arithmetic/mul.c | 2 +- src/vm/arithmetic/sub.c | 2 +- src/vm/arrays/apop.c | 2 +- src/vm/arrays/clear.c | 2 +- src/vm/arrays/contains.c | 2 +- src/vm/arrays/enumerate.c | 2 +- src/vm/arrays/index_get.c | 2 +- src/vm/arrays/index_of.c | 2 +- src/vm/arrays/index_set.c | 2 +- src/vm/arrays/insert.c | 2 +- src/vm/arrays/join.c | 2 +- src/vm/arrays/make_array.c | 2 +- src/vm/arrays/push.c | 2 +- src/vm/arrays/remove.c | 2 +- src/vm/arrays/set.c | 2 +- src/vm/arrays/slice.c | 2 +- src/vm/arrays/zip.c | 2 +- src/vm/bitwise/band.c | 2 +- src/vm/bitwise/bnot.c | 2 +- src/vm/bitwise/bor.c | 2 +- src/vm/bitwise/bxor.c | 2 +- src/vm/bitwise/rol.c | 2 +- src/vm/bitwise/ror.c | 2 +- src/vm/bitwise/shl.c | 2 +- src/vm/bitwise/shr.c | 2 +- src/vm/cast.c | 2 +- src/vm/core/call.c | 2 +- src/vm/core/dup.c | 2 +- src/vm/core/exit.c | 2 +- src/vm/core/halt.c | 2 +- src/vm/core/jump.c | 2 +- src/vm/core/jump_if_false.c | 2 +- src/vm/core/load_const.c | 2 +- src/vm/core/load_global.c | 2 +- src/vm/core/load_local.c | 2 +- src/vm/core/nop.c | 2 +- src/vm/core/pop.c | 2 +- src/vm/core/return.c | 2 +- src/vm/core/store_global.c | 2 +- src/vm/core/store_local.c | 2 +- src/vm/core/swap.c | 2 +- src/vm/io/read_file.c | 2 +- src/vm/io/write_file.c | 2 +- src/vm/len.c | 2 +- src/vm/line.c | 2 +- src/vm/logic/and.c | 2 +- src/vm/logic/eq.c | 2 +- src/vm/logic/gt.c | 2 +- src/vm/logic/gte.c | 2 +- src/vm/logic/lt.c | 2 +- src/vm/logic/lte.c | 2 +- src/vm/logic/neq.c | 2 +- src/vm/logic/not.c | 2 +- src/vm/logic/or.c | 2 +- src/vm/maps/has_key.c | 2 +- src/vm/maps/keys.c | 2 +- src/vm/maps/make_map.c | 2 +- src/vm/maps/values.c | 2 +- src/vm/math/abs.c | 2 +- src/vm/math/clamp.c | 2 +- src/vm/math/max.c | 2 +- src/vm/math/min.c | 2 +- src/vm/math/mod.c | 2 +- src/vm/math/pow.c | 2 +- src/vm/math/random_int.c | 2 +- src/vm/math/random_seed.c | 2 +- src/vm/os/clock_mono_ms.c | 2 +- src/vm/os/date_format.c | 2 +- src/vm/os/env.c | 2 +- src/vm/os/proc_run.c | 2 +- src/vm/os/proc_system.c | 2 +- src/vm/os/sleep_ms.c | 2 +- src/vm/os/socket_close.c | 2 +- src/vm/os/socket_recv.c | 2 +- src/vm/os/socket_send.c | 2 +- src/vm/os/socket_tcp_accept.c | 2 +- src/vm/os/socket_tcp_connect.c | 2 +- src/vm/os/socket_tcp_listen.c | 2 +- src/vm/os/socket_unix_connect.c | 2 +- src/vm/os/socket_unix_listen.c | 2 +- src/vm/os/thread_common.c | 2 +- src/vm/os/thread_join.c | 2 +- src/vm/os/thread_spawn.c | 2 +- src/vm/os/time_now_ms.c | 2 +- src/vm/pcsc/connect.c | 2 +- src/vm/pcsc/disconnect.c | 2 +- src/vm/pcsc/establish.c | 2 +- src/vm/pcsc/list_readers.c | 2 +- src/vm/pcsc/release.c | 2 +- src/vm/pcsc/transmit.c | 2 +- src/vm/print.c | 2 +- src/vm/sclamp.c | 2 +- src/vm/strings/find.c | 2 +- src/vm/strings/regex_match.c | 2 +- src/vm/strings/regex_replace.c | 2 +- src/vm/strings/regex_search.c | 2 +- src/vm/strings/split.c | 2 +- src/vm/strings/substr.c | 2 +- src/vm/to_number.c | 2 +- src/vm/to_string.c | 2 +- src/vm/typeof.c | 2 +- src/vm/uclamp.c | 2 +- 213 files changed, 213 insertions(+), 213 deletions(-) diff --git a/demo.fun b/demo.fun index 1a3c164..e7a9324 100755 --- a/demo.fun +++ b/demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/arrays.fun b/examples/arrays.fun index 0de3914..ba28939 100755 --- a/examples/arrays.fun +++ b/examples/arrays.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/arrays_advanced.fun b/examples/arrays_advanced.fun index 7125d48..f326d3b 100755 --- a/examples/arrays_advanced.fun +++ b/examples/arrays_advanced.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/arrays_iter.fun b/examples/arrays_iter.fun index df9da6b..738cafd 100755 --- a/examples/arrays_iter.fun +++ b/examples/arrays_iter.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/boolean_decl.fun b/examples/boolean_decl.fun index 66bff98..4caaa6c 100755 --- a/examples/boolean_decl.fun +++ b/examples/boolean_decl.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/booleans.fun b/examples/booleans.fun index c66b515..840c64a 100755 --- a/examples/booleans.fun +++ b/examples/booleans.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/builtins_conversions.fun b/examples/builtins_conversions.fun index 8c448f8..9cce437 100755 --- a/examples/builtins_conversions.fun +++ b/examples/builtins_conversions.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/builtins_extended.fun b/examples/builtins_extended.fun index 0517a8d..7c9fe9f 100755 --- a/examples/builtins_extended.fun +++ b/examples/builtins_extended.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/builtins_maps_and_more.fun b/examples/builtins_maps_and_more.fun index afb05d4..7d79053 100755 --- a/examples/builtins_maps_and_more.fun +++ b/examples/builtins_maps_and_more.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/cast_demo.fun b/examples/cast_demo.fun index da67808..f937b0c 100755 --- a/examples/cast_demo.fun +++ b/examples/cast_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/class_constructor.fun b/examples/class_constructor.fun index 09db7fc..ad7b4fb 100755 --- a/examples/class_constructor.fun +++ b/examples/class_constructor.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/classes_demo.fun b/examples/classes_demo.fun index 329ba96..e855f0a 100755 --- a/examples/classes_demo.fun +++ b/examples/classes_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/datetime_basic.fun b/examples/datetime_basic.fun index 20d162c..4638802 100755 --- a/examples/datetime_basic.fun +++ b/examples/datetime_basic.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/exit_example.fun b/examples/exit_example.fun index a43f1dd..19911ac 100755 --- a/examples/exit_example.fun +++ b/examples/exit_example.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/expressions_test.fun b/examples/expressions_test.fun index c36365a..43f5348 100755 --- a/examples/expressions_test.fun +++ b/examples/expressions_test.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/fail.fun b/examples/fail.fun index ad9f64a..6085dbe 100755 --- a/examples/fail.fun +++ b/examples/fail.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/file_io.fun b/examples/file_io.fun index c7365f0..e85a13f 100755 --- a/examples/file_io.fun +++ b/examples/file_io.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/file_print_for_file_line_by_line.fun b/examples/file_print_for_file_line_by_line.fun index 381121c..e3180f1 100755 --- a/examples/file_print_for_file_line_by_line.fun +++ b/examples/file_print_for_file_line_by_line.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/floats.fun b/examples/floats.fun index 277cd17..8c064c2 100755 --- a/examples/floats.fun +++ b/examples/floats.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/for_range_test.fun b/examples/for_range_test.fun index 9f6fd50..23ce66e 100755 --- a/examples/for_range_test.fun +++ b/examples/for_range_test.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/functions_test.fun b/examples/functions_test.fun index 39645f8..0851f0f 100755 --- a/examples/functions_test.fun +++ b/examples/functions_test.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/have_fun.fun b/examples/have_fun.fun index 34e04a7..8a0acc4 100755 --- a/examples/have_fun.fun +++ b/examples/have_fun.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/have_fun_function.fun b/examples/have_fun_function.fun index ab0a468..a9d9afb 100755 --- a/examples/have_fun_function.fun +++ b/examples/have_fun_function.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/if_else_test.fun b/examples/if_else_test.fun index 850a887..dddb3f0 100755 --- a/examples/if_else_test.fun +++ b/examples/if_else_test.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/include_lib.fun b/examples/include_lib.fun index 93ddb85..67b886d 100755 --- a/examples/include_lib.fun +++ b/examples/include_lib.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/include_local.fun b/examples/include_local.fun index c819a44..7941efe 100755 --- a/examples/include_local.fun +++ b/examples/include_local.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/include_local_util.fun b/examples/include_local_util.fun index 8245ce4..a39710c 100644 --- a/examples/include_local_util.fun +++ b/examples/include_local_util.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/include_namespace.fun b/examples/include_namespace.fun index 02a4ac0..c256907 100755 --- a/examples/include_namespace.fun +++ b/examples/include_namespace.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/inheritance_demo.fun b/examples/inheritance_demo.fun index 8518c3e..bcc10a3 100755 --- a/examples/inheritance_demo.fun +++ b/examples/inheritance_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/input_example.fun b/examples/input_example.fun index fe09df1..4e2246a 100755 --- a/examples/input_example.fun +++ b/examples/input_example.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/loops_break_continue.fun b/examples/loops_break_continue.fun index 90d0b4a..5ccff70 100755 --- a/examples/loops_break_continue.fun +++ b/examples/loops_break_continue.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/md5_demo.fun b/examples/md5_demo.fun index c00561d..f17c5ce 100755 --- a/examples/md5_demo.fun +++ b/examples/md5_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/namespaced_mod.fun b/examples/namespaced_mod.fun index 0752e01..764466e 100755 --- a/examples/namespaced_mod.fun +++ b/examples/namespaced_mod.fun @@ -4,7 +4,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/nested_loops.fun b/examples/nested_loops.fun index a461389..2c4339f 100755 --- a/examples/nested_loops.fun +++ b/examples/nested_loops.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/objects_basic.fun b/examples/objects_basic.fun index 5ed1846..3122a35 100755 --- a/examples/objects_basic.fun +++ b/examples/objects_basic.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/objects_more.fun b/examples/objects_more.fun index 9ffad90..fe764c1 100755 --- a/examples/objects_more.fun +++ b/examples/objects_more.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/os_env.fun b/examples/os_env.fun index b3fc770..6969212 100755 --- a/examples/os_env.fun +++ b/examples/os_env.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/pcsc_example.fun b/examples/pcsc_example.fun index 46a9030..69394f3 100755 --- a/examples/pcsc_example.fun +++ b/examples/pcsc_example.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/process_example.fun b/examples/process_example.fun index 23fed19..ab3b19e 100755 --- a/examples/process_example.fun +++ b/examples/process_example.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/regex_demo.fun b/examples/regex_demo.fun index 8ea3637..f0b23a8 100755 --- a/examples/regex_demo.fun +++ b/examples/regex_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/regex_procedural.fun b/examples/regex_procedural.fun index 7036ceb..33ce1f0 100755 --- a/examples/regex_procedural.fun +++ b/examples/regex_procedural.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/repl_on_error.fun b/examples/repl_on_error.fun index cf26a96..cad0053 100644 --- a/examples/repl_on_error.fun +++ b/examples/repl_on_error.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/sha1_demo.fun b/examples/sha1_demo.fun index 4cd14ec..cd74404 100755 --- a/examples/sha1_demo.fun +++ b/examples/sha1_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/sha256_demo.fun b/examples/sha256_demo.fun index a75354e..4eddddb 100755 --- a/examples/sha256_demo.fun +++ b/examples/sha256_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/sha256_str_demo.fun b/examples/sha256_str_demo.fun index de0deb7..475e842 100755 --- a/examples/sha256_str_demo.fun +++ b/examples/sha256_str_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/sha384_example.fun b/examples/sha384_example.fun index c5fd0ba..8fcf388 100755 --- a/examples/sha384_example.fun +++ b/examples/sha384_example.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/sha512_demo.fun b/examples/sha512_demo.fun index 1d87a41..b82d788 100755 --- a/examples/sha512_demo.fun +++ b/examples/sha512_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/sha512_str_demo.fun b/examples/sha512_str_demo.fun index b318c53..2675476 100755 --- a/examples/sha512_str_demo.fun +++ b/examples/sha512_str_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/short_circuit_test.fun b/examples/short_circuit_test.fun index aea7d6c..1dca7b8 100755 --- a/examples/short_circuit_test.fun +++ b/examples/short_circuit_test.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/signed_ints.fun b/examples/signed_ints.fun index dd48d55..756194a 100755 --- a/examples/signed_ints.fun +++ b/examples/signed_ints.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/strings_test.fun b/examples/strings_test.fun index 52861d9..b000ab0 100755 --- a/examples/strings_test.fun +++ b/examples/strings_test.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/tcp_http_get.fun b/examples/tcp_http_get.fun index d084002..9c5f463 100755 --- a/examples/tcp_http_get.fun +++ b/examples/tcp_http_get.fun @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/tcp_http_get_class.fun b/examples/tcp_http_get_class.fun index b40c63d..10fb802 100755 --- a/examples/tcp_http_get_class.fun +++ b/examples/tcp_http_get_class.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/thread_class_example.fun b/examples/thread_class_example.fun index 90929df..7910636 100755 --- a/examples/thread_class_example.fun +++ b/examples/thread_class_example.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/threads_demo.fun b/examples/threads_demo.fun index a40b6fe..c8c1eea 100755 --- a/examples/threads_demo.fun +++ b/examples/threads_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/try_catch_finally.fun b/examples/try_catch_finally.fun index 1369a5b..392300e 100755 --- a/examples/try_catch_finally.fun +++ b/examples/try_catch_finally.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/try_catch_with_error.fun b/examples/try_catch_with_error.fun index 5e289aa..3aa6a34 100755 --- a/examples/try_catch_with_error.fun +++ b/examples/try_catch_with_error.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/type_safety.fun b/examples/type_safety.fun index 6667f29..3d8e263 100755 --- a/examples/type_safety.fun +++ b/examples/type_safety.fun @@ -2,7 +2,7 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/type_safety_fails.fun b/examples/type_safety_fails.fun index f112972..ca1c45b 100755 --- a/examples/type_safety_fails.fun +++ b/examples/type_safety_fails.fun @@ -2,7 +2,7 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/typeof.fun b/examples/typeof.fun index 5ee855a..6abc5f6 100755 --- a/examples/typeof.fun +++ b/examples/typeof.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/typeof_features.fun b/examples/typeof_features.fun index a2174e7..54d765b 100755 --- a/examples/typeof_features.fun +++ b/examples/typeof_features.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/types_integers.fun b/examples/types_integers.fun index 349bf3b..8cff2c7 100755 --- a/examples/types_integers.fun +++ b/examples/types_integers.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/types_overview.fun b/examples/types_overview.fun index 8bc774f..4c1c9b8 100755 --- a/examples/types_overview.fun +++ b/examples/types_overview.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/uint_types.fun b/examples/uint_types.fun index facfbec..f743e58 100755 --- a/examples/uint_types.fun +++ b/examples/uint_types.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/unix_socket_echo.fun b/examples/unix_socket_echo.fun index 8060327..8cd0042 100755 --- a/examples/unix_socket_echo.fun +++ b/examples/unix_socket_echo.fun @@ -2,7 +2,7 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/examples/while_test.fun b/examples/while_test.fun index 1f64457..1ddb2a5 100755 --- a/examples/while_test.fun +++ b/examples/while_test.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/extra/examples/pcsc2_example.fun b/extra/examples/pcsc2_example.fun index 2b97b41..ddeb181 100755 --- a/extra/examples/pcsc2_example.fun +++ b/extra/examples/pcsc2_example.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/extra/examples/pcsc_demo.fun b/extra/examples/pcsc_demo.fun index dacd9e9..850ace6 100755 --- a/extra/examples/pcsc_demo.fun +++ b/extra/examples/pcsc_demo.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/arrays.fun b/lib/arrays.fun index 4755911..4869169 100644 --- a/lib/arrays.fun +++ b/lib/arrays.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/crypt/md5.fun b/lib/crypt/md5.fun index a77d2fd..41ab461 100644 --- a/lib/crypt/md5.fun +++ b/lib/crypt/md5.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/crypt/md5_legacy.fun b/lib/crypt/md5_legacy.fun index 8a33d9f..dd27ddc 100644 --- a/lib/crypt/md5_legacy.fun +++ b/lib/crypt/md5_legacy.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/crypt/sha1.fun b/lib/crypt/sha1.fun index 907ed4b..41a048a 100644 --- a/lib/crypt/sha1.fun +++ b/lib/crypt/sha1.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/crypt/sha256.fun b/lib/crypt/sha256.fun index b53c25b..f9743d5 100644 --- a/lib/crypt/sha256.fun +++ b/lib/crypt/sha256.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/crypt/sha384.fun b/lib/crypt/sha384.fun index 9b05738..2373a30 100644 --- a/lib/crypt/sha384.fun +++ b/lib/crypt/sha384.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/crypt/sha512.fun b/lib/crypt/sha512.fun index 63995eb..eda388f 100644 --- a/lib/crypt/sha512.fun +++ b/lib/crypt/sha512.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/encoding/base64.fun b/lib/encoding/base64.fun index 2b9071e..71ed6ff 100644 --- a/lib/encoding/base64.fun +++ b/lib/encoding/base64.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/hello.fun b/lib/hello.fun index 9f36fca..2e25904 100644 --- a/lib/hello.fun +++ b/lib/hello.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/hex.fun b/lib/hex.fun index fb9ab05..378e9e5 100644 --- a/lib/hex.fun +++ b/lib/hex.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/io/pcsc.fun b/lib/io/pcsc.fun index 4a82e07..9986c2b 100644 --- a/lib/io/pcsc.fun +++ b/lib/io/pcsc.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/io/pcsc2.fun b/lib/io/pcsc2.fun index ae788cd..699ef7b 100644 --- a/lib/io/pcsc2.fun +++ b/lib/io/pcsc2.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/io/process.fun b/lib/io/process.fun index 0f5f5c3..0b8be59 100644 --- a/lib/io/process.fun +++ b/lib/io/process.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/io/socket.fun b/lib/io/socket.fun index cd6f769..10d1630 100644 --- a/lib/io/socket.fun +++ b/lib/io/socket.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/io/thread.fun b/lib/io/thread.fun index 2f76717..07b3f38 100644 --- a/lib/io/thread.fun +++ b/lib/io/thread.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/math.fun b/lib/math.fun index 9ed7763..0664084 100644 --- a/lib/math.fun +++ b/lib/math.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/regex.fun b/lib/regex.fun index fbe0213..9d0e76d 100644 --- a/lib/regex.fun +++ b/lib/regex.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/strings.fun b/lib/strings.fun index 35439dc..47c803a 100644 --- a/lib/strings.fun +++ b/lib/strings.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/utils/math.fun b/lib/utils/math.fun index fe910f1..ade6d26 100644 --- a/lib/utils/math.fun +++ b/lib/utils/math.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/lib/utils/range.fun b/lib/utils/range.fun index 61c882f..c8f4440 100644 --- a/lib/utils/range.fun +++ b/lib/utils/range.fun @@ -1,6 +1,6 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/play.fun b/play.fun index d0a3546..7070ba3 100755 --- a/play.fun +++ b/play.fun @@ -2,7 +2,7 @@ /* * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/scripts/check_op_includes.py b/scripts/check_op_includes.py index a041799..8cd2d3c 100755 --- a/scripts/check_op_includes.py +++ b/scripts/check_op_includes.py @@ -2,7 +2,7 @@ """ This file is part of the Fun programming language. -https://hanez.org/project/fun/ +https://fun-lang.xyz/ Copyright 2025 Johannes Findeisen Licensed under the terms of the Apache-2.0 license. diff --git a/scripts/run_examples.sh b/scripts/run_examples.sh index e62b7ec..9d814cd 100755 --- a/scripts/run_examples.sh +++ b/scripts/run_examples.sh @@ -2,7 +2,7 @@ set -euo pipefail # This file is part of the Fun programming language. -# https://hanez.org/project/fun/ +# https://fun-lang.xyz/ # # Copyright 2025 Johannes Findeisen # Licensed under the terms of the Apache-2.0 license. diff --git a/src/array_utils.c b/src/array_utils.c index 0c05461..e12e0c5 100644 --- a/src/array_utils.c +++ b/src/array_utils.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/bytecode.c b/src/bytecode.c index 678f2ef..a9b3924 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/bytecode.h b/src/bytecode.h index 4a5c29e..172dce1 100644 --- a/src/bytecode.h +++ b/src/bytecode.h @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/fun_test.c b/src/fun_test.c index 79964de..64928f8 100644 --- a/src/fun_test.c +++ b/src/fun_test.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/iter.c b/src/iter.c index 8e991a7..0586344 100644 --- a/src/iter.c +++ b/src/iter.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/map.c b/src/map.c index c98c2ab..a7c2260 100644 --- a/src/map.c +++ b/src/map.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/parser.c b/src/parser.c index cf48c37..14015c5 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/parser.h b/src/parser.h index 1c2279d..352372b 100644 --- a/src/parser.h +++ b/src/parser.h @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/parser_utils.c b/src/parser_utils.c index fcc954d..65999fc 100644 --- a/src/parser_utils.c +++ b/src/parser_utils.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/pcsc.c b/src/pcsc.c index 1affa22..1f72f45 100644 --- a/src/pcsc.c +++ b/src/pcsc.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/repl.c b/src/repl.c index 698fc99..9e3c481 100644 --- a/src/repl.c +++ b/src/repl.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/str_utils.c b/src/str_utils.c index 5835a68..ee00330 100644 --- a/src/str_utils.c +++ b/src/str_utils.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/string.c b/src/string.c index 423ade8..46805e5 100644 --- a/src/string.c +++ b/src/string.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/test_opcodes.c b/src/test_opcodes.c index 3db19b5..c6c6e3a 100644 --- a/src/test_opcodes.c +++ b/src/test_opcodes.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/value.c b/src/value.c index 6008d06..f58dec6 100644 --- a/src/value.c +++ b/src/value.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/value.h b/src/value.h index 9aa6c4c..f6445e2 100644 --- a/src/value.h +++ b/src/value.h @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm.c b/src/vm.c index 0101728..56ba89d 100644 --- a/src/vm.c +++ b/src/vm.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm.h b/src/vm.h index eccbdfc..9f393d6 100644 --- a/src/vm.h +++ b/src/vm.h @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arithmetic/add.c b/src/vm/arithmetic/add.c index 46c044a..42590df 100644 --- a/src/vm/arithmetic/add.c +++ b/src/vm/arithmetic/add.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arithmetic/div.c b/src/vm/arithmetic/div.c index 007fa5b..8c821ef 100644 --- a/src/vm/arithmetic/div.c +++ b/src/vm/arithmetic/div.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arithmetic/mul.c b/src/vm/arithmetic/mul.c index 94decfd..203cad2 100644 --- a/src/vm/arithmetic/mul.c +++ b/src/vm/arithmetic/mul.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arithmetic/sub.c b/src/vm/arithmetic/sub.c index e1867c8..6f7ac1b 100644 --- a/src/vm/arithmetic/sub.c +++ b/src/vm/arithmetic/sub.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/apop.c b/src/vm/arrays/apop.c index 9bc7d01..e3a8a47 100644 --- a/src/vm/arrays/apop.c +++ b/src/vm/arrays/apop.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/clear.c b/src/vm/arrays/clear.c index a7bebb5..2ebb66d 100644 --- a/src/vm/arrays/clear.c +++ b/src/vm/arrays/clear.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/contains.c b/src/vm/arrays/contains.c index e61983a..892805d 100644 --- a/src/vm/arrays/contains.c +++ b/src/vm/arrays/contains.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/enumerate.c b/src/vm/arrays/enumerate.c index 5e328cb..6b7dfb2 100644 --- a/src/vm/arrays/enumerate.c +++ b/src/vm/arrays/enumerate.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/index_get.c b/src/vm/arrays/index_get.c index 08eca93..7da0c5d 100644 --- a/src/vm/arrays/index_get.c +++ b/src/vm/arrays/index_get.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/index_of.c b/src/vm/arrays/index_of.c index 52e5184..57f3c99 100644 --- a/src/vm/arrays/index_of.c +++ b/src/vm/arrays/index_of.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/index_set.c b/src/vm/arrays/index_set.c index c58bb20..5af096e 100644 --- a/src/vm/arrays/index_set.c +++ b/src/vm/arrays/index_set.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/insert.c b/src/vm/arrays/insert.c index 6426469..6bfc4cb 100644 --- a/src/vm/arrays/insert.c +++ b/src/vm/arrays/insert.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/join.c b/src/vm/arrays/join.c index a299c2d..494746d 100644 --- a/src/vm/arrays/join.c +++ b/src/vm/arrays/join.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/make_array.c b/src/vm/arrays/make_array.c index c8288ba..816c4c0 100644 --- a/src/vm/arrays/make_array.c +++ b/src/vm/arrays/make_array.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/push.c b/src/vm/arrays/push.c index 19338c8..1ffbf42 100644 --- a/src/vm/arrays/push.c +++ b/src/vm/arrays/push.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/remove.c b/src/vm/arrays/remove.c index 7616d96..f088a35 100644 --- a/src/vm/arrays/remove.c +++ b/src/vm/arrays/remove.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/set.c b/src/vm/arrays/set.c index 142c585..a230a10 100644 --- a/src/vm/arrays/set.c +++ b/src/vm/arrays/set.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/slice.c b/src/vm/arrays/slice.c index 97fa26f..4e0d8f9 100644 --- a/src/vm/arrays/slice.c +++ b/src/vm/arrays/slice.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/arrays/zip.c b/src/vm/arrays/zip.c index d7116e9..75b7e31 100644 --- a/src/vm/arrays/zip.c +++ b/src/vm/arrays/zip.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/bitwise/band.c b/src/vm/bitwise/band.c index 7699751..0a21f6b 100644 --- a/src/vm/bitwise/band.c +++ b/src/vm/bitwise/band.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/bitwise/bnot.c b/src/vm/bitwise/bnot.c index 4f25cc1..520449b 100644 --- a/src/vm/bitwise/bnot.c +++ b/src/vm/bitwise/bnot.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/bitwise/bor.c b/src/vm/bitwise/bor.c index 218f8b8..68f53d6 100644 --- a/src/vm/bitwise/bor.c +++ b/src/vm/bitwise/bor.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/bitwise/bxor.c b/src/vm/bitwise/bxor.c index 7c069f5..10ceb7f 100644 --- a/src/vm/bitwise/bxor.c +++ b/src/vm/bitwise/bxor.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/bitwise/rol.c b/src/vm/bitwise/rol.c index 3b18128..95a4315 100644 --- a/src/vm/bitwise/rol.c +++ b/src/vm/bitwise/rol.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/bitwise/ror.c b/src/vm/bitwise/ror.c index f83f1a2..7834d04 100644 --- a/src/vm/bitwise/ror.c +++ b/src/vm/bitwise/ror.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/bitwise/shl.c b/src/vm/bitwise/shl.c index 975ea81..2e660ab 100644 --- a/src/vm/bitwise/shl.c +++ b/src/vm/bitwise/shl.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/bitwise/shr.c b/src/vm/bitwise/shr.c index 2df80de..ec776db 100644 --- a/src/vm/bitwise/shr.c +++ b/src/vm/bitwise/shr.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/cast.c b/src/vm/cast.c index 4b2e7dd..9bc103f 100644 --- a/src/vm/cast.c +++ b/src/vm/cast.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/call.c b/src/vm/core/call.c index aac0e00..be925a9 100644 --- a/src/vm/core/call.c +++ b/src/vm/core/call.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/dup.c b/src/vm/core/dup.c index 49b7a4a..62a55af 100644 --- a/src/vm/core/dup.c +++ b/src/vm/core/dup.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/exit.c b/src/vm/core/exit.c index d919a4e..1c2509e 100644 --- a/src/vm/core/exit.c +++ b/src/vm/core/exit.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/halt.c b/src/vm/core/halt.c index c440387..345e3c0 100644 --- a/src/vm/core/halt.c +++ b/src/vm/core/halt.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/jump.c b/src/vm/core/jump.c index c3a7fd5..2f6c4d7 100644 --- a/src/vm/core/jump.c +++ b/src/vm/core/jump.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/jump_if_false.c b/src/vm/core/jump_if_false.c index 804c267..fa52943 100644 --- a/src/vm/core/jump_if_false.c +++ b/src/vm/core/jump_if_false.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/load_const.c b/src/vm/core/load_const.c index 2883bf4..522ea44 100644 --- a/src/vm/core/load_const.c +++ b/src/vm/core/load_const.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/load_global.c b/src/vm/core/load_global.c index 152d450..4e11010 100644 --- a/src/vm/core/load_global.c +++ b/src/vm/core/load_global.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/load_local.c b/src/vm/core/load_local.c index b1762e9..b6524e2 100644 --- a/src/vm/core/load_local.c +++ b/src/vm/core/load_local.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/nop.c b/src/vm/core/nop.c index 69f6d4e..81f0716 100644 --- a/src/vm/core/nop.c +++ b/src/vm/core/nop.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/pop.c b/src/vm/core/pop.c index 4db7ed6..c5a21ca 100644 --- a/src/vm/core/pop.c +++ b/src/vm/core/pop.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/return.c b/src/vm/core/return.c index 8e80290..c6c7a0e 100644 --- a/src/vm/core/return.c +++ b/src/vm/core/return.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/store_global.c b/src/vm/core/store_global.c index 275ac21..bcb4817 100644 --- a/src/vm/core/store_global.c +++ b/src/vm/core/store_global.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/store_local.c b/src/vm/core/store_local.c index 604c085..f8fba99 100644 --- a/src/vm/core/store_local.c +++ b/src/vm/core/store_local.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/core/swap.c b/src/vm/core/swap.c index c1baa95..91699fc 100644 --- a/src/vm/core/swap.c +++ b/src/vm/core/swap.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/io/read_file.c b/src/vm/io/read_file.c index 5d1a298..0621db2 100644 --- a/src/vm/io/read_file.c +++ b/src/vm/io/read_file.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/io/write_file.c b/src/vm/io/write_file.c index 90c6d48..69ee253 100644 --- a/src/vm/io/write_file.c +++ b/src/vm/io/write_file.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/len.c b/src/vm/len.c index 180e12a..7adb446 100644 --- a/src/vm/len.c +++ b/src/vm/len.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/line.c b/src/vm/line.c index 34b6c3b..6728109 100644 --- a/src/vm/line.c +++ b/src/vm/line.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/logic/and.c b/src/vm/logic/and.c index d0d61b9..d8cafda 100644 --- a/src/vm/logic/and.c +++ b/src/vm/logic/and.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/logic/eq.c b/src/vm/logic/eq.c index 2a5d7ab..9d6bf6c 100644 --- a/src/vm/logic/eq.c +++ b/src/vm/logic/eq.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/logic/gt.c b/src/vm/logic/gt.c index 97f627e..e2cbb5f 100644 --- a/src/vm/logic/gt.c +++ b/src/vm/logic/gt.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/logic/gte.c b/src/vm/logic/gte.c index 70005ec..254dbd4 100644 --- a/src/vm/logic/gte.c +++ b/src/vm/logic/gte.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/logic/lt.c b/src/vm/logic/lt.c index 4926fb4..3e233f0 100644 --- a/src/vm/logic/lt.c +++ b/src/vm/logic/lt.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/logic/lte.c b/src/vm/logic/lte.c index 9599ce7..eb8d7c9 100644 --- a/src/vm/logic/lte.c +++ b/src/vm/logic/lte.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/logic/neq.c b/src/vm/logic/neq.c index 78f4b19..6c58491 100644 --- a/src/vm/logic/neq.c +++ b/src/vm/logic/neq.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/logic/not.c b/src/vm/logic/not.c index 0ed2233..4c73f76 100644 --- a/src/vm/logic/not.c +++ b/src/vm/logic/not.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/logic/or.c b/src/vm/logic/or.c index a5eda06..a110409 100644 --- a/src/vm/logic/or.c +++ b/src/vm/logic/or.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/maps/has_key.c b/src/vm/maps/has_key.c index ebb4f17..09be732 100644 --- a/src/vm/maps/has_key.c +++ b/src/vm/maps/has_key.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/maps/keys.c b/src/vm/maps/keys.c index 76af043..244fd00 100644 --- a/src/vm/maps/keys.c +++ b/src/vm/maps/keys.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/maps/make_map.c b/src/vm/maps/make_map.c index 6d4b92d..24f9631 100644 --- a/src/vm/maps/make_map.c +++ b/src/vm/maps/make_map.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/maps/values.c b/src/vm/maps/values.c index 506cbf3..47dba63 100644 --- a/src/vm/maps/values.c +++ b/src/vm/maps/values.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/math/abs.c b/src/vm/math/abs.c index c1f75d8..ef9a5e3 100644 --- a/src/vm/math/abs.c +++ b/src/vm/math/abs.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/math/clamp.c b/src/vm/math/clamp.c index d188f8d..e4cfd8a 100644 --- a/src/vm/math/clamp.c +++ b/src/vm/math/clamp.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/math/max.c b/src/vm/math/max.c index b549b1b..2426875 100644 --- a/src/vm/math/max.c +++ b/src/vm/math/max.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/math/min.c b/src/vm/math/min.c index 0d3b4c3..b4e724a 100644 --- a/src/vm/math/min.c +++ b/src/vm/math/min.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/math/mod.c b/src/vm/math/mod.c index 10069ef..0373e07 100644 --- a/src/vm/math/mod.c +++ b/src/vm/math/mod.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/math/pow.c b/src/vm/math/pow.c index 47b7f8d..649cca1 100644 --- a/src/vm/math/pow.c +++ b/src/vm/math/pow.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/math/random_int.c b/src/vm/math/random_int.c index 386e974..f04660d 100644 --- a/src/vm/math/random_int.c +++ b/src/vm/math/random_int.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/math/random_seed.c b/src/vm/math/random_seed.c index edcd880..d79a6c9 100644 --- a/src/vm/math/random_seed.c +++ b/src/vm/math/random_seed.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/clock_mono_ms.c b/src/vm/os/clock_mono_ms.c index 25206e9..9abbaab 100644 --- a/src/vm/os/clock_mono_ms.c +++ b/src/vm/os/clock_mono_ms.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/date_format.c b/src/vm/os/date_format.c index 6e6ba99..1e05714 100644 --- a/src/vm/os/date_format.c +++ b/src/vm/os/date_format.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/env.c b/src/vm/os/env.c index 6616fab..25daf08 100644 --- a/src/vm/os/env.c +++ b/src/vm/os/env.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/proc_run.c b/src/vm/os/proc_run.c index af239d7..f8c8d77 100644 --- a/src/vm/os/proc_run.c +++ b/src/vm/os/proc_run.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/proc_system.c b/src/vm/os/proc_system.c index 3616b56..d3c0e90 100644 --- a/src/vm/os/proc_system.c +++ b/src/vm/os/proc_system.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/sleep_ms.c b/src/vm/os/sleep_ms.c index 3d2fe2f..3728efe 100644 --- a/src/vm/os/sleep_ms.c +++ b/src/vm/os/sleep_ms.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/socket_close.c b/src/vm/os/socket_close.c index 0d8a2ee..dae95b1 100644 --- a/src/vm/os/socket_close.c +++ b/src/vm/os/socket_close.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/socket_recv.c b/src/vm/os/socket_recv.c index 9d72d5c..a09ca3c 100644 --- a/src/vm/os/socket_recv.c +++ b/src/vm/os/socket_recv.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/socket_send.c b/src/vm/os/socket_send.c index efa859f..3be90cc 100644 --- a/src/vm/os/socket_send.c +++ b/src/vm/os/socket_send.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/socket_tcp_accept.c b/src/vm/os/socket_tcp_accept.c index 7dadef4..34d9253 100644 --- a/src/vm/os/socket_tcp_accept.c +++ b/src/vm/os/socket_tcp_accept.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/socket_tcp_connect.c b/src/vm/os/socket_tcp_connect.c index d388903..7ec3c1a 100644 --- a/src/vm/os/socket_tcp_connect.c +++ b/src/vm/os/socket_tcp_connect.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/socket_tcp_listen.c b/src/vm/os/socket_tcp_listen.c index c5fcc52..9d8509e 100644 --- a/src/vm/os/socket_tcp_listen.c +++ b/src/vm/os/socket_tcp_listen.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/socket_unix_connect.c b/src/vm/os/socket_unix_connect.c index 7490b2b..10cf8a9 100644 --- a/src/vm/os/socket_unix_connect.c +++ b/src/vm/os/socket_unix_connect.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/socket_unix_listen.c b/src/vm/os/socket_unix_listen.c index dd4c2cd..8c94ed7 100644 --- a/src/vm/os/socket_unix_listen.c +++ b/src/vm/os/socket_unix_listen.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/thread_common.c b/src/vm/os/thread_common.c index 0f4014a..0f6caeb 100644 --- a/src/vm/os/thread_common.c +++ b/src/vm/os/thread_common.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/thread_join.c b/src/vm/os/thread_join.c index fb02ad8..354bea7 100644 --- a/src/vm/os/thread_join.c +++ b/src/vm/os/thread_join.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/thread_spawn.c b/src/vm/os/thread_spawn.c index 6263a20..1902ee1 100644 --- a/src/vm/os/thread_spawn.c +++ b/src/vm/os/thread_spawn.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/os/time_now_ms.c b/src/vm/os/time_now_ms.c index 389e19c..43002b0 100644 --- a/src/vm/os/time_now_ms.c +++ b/src/vm/os/time_now_ms.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/pcsc/connect.c b/src/vm/pcsc/connect.c index 1d068f7..e9f9a43 100644 --- a/src/vm/pcsc/connect.c +++ b/src/vm/pcsc/connect.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/pcsc/disconnect.c b/src/vm/pcsc/disconnect.c index f955804..40796f9 100644 --- a/src/vm/pcsc/disconnect.c +++ b/src/vm/pcsc/disconnect.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/pcsc/establish.c b/src/vm/pcsc/establish.c index bbb8501..4b12875 100644 --- a/src/vm/pcsc/establish.c +++ b/src/vm/pcsc/establish.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/pcsc/list_readers.c b/src/vm/pcsc/list_readers.c index 8b302d3..3cf0cd7 100644 --- a/src/vm/pcsc/list_readers.c +++ b/src/vm/pcsc/list_readers.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/pcsc/release.c b/src/vm/pcsc/release.c index 602e845..917db21 100644 --- a/src/vm/pcsc/release.c +++ b/src/vm/pcsc/release.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/pcsc/transmit.c b/src/vm/pcsc/transmit.c index 4ff198c..4a348dc 100644 --- a/src/vm/pcsc/transmit.c +++ b/src/vm/pcsc/transmit.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/print.c b/src/vm/print.c index 464300c..aee24f9 100644 --- a/src/vm/print.c +++ b/src/vm/print.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/sclamp.c b/src/vm/sclamp.c index d540321..94fe304 100644 --- a/src/vm/sclamp.c +++ b/src/vm/sclamp.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/strings/find.c b/src/vm/strings/find.c index e594146..48dfccc 100644 --- a/src/vm/strings/find.c +++ b/src/vm/strings/find.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/strings/regex_match.c b/src/vm/strings/regex_match.c index 43ceacb..53390ab 100644 --- a/src/vm/strings/regex_match.c +++ b/src/vm/strings/regex_match.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/strings/regex_replace.c b/src/vm/strings/regex_replace.c index 3d29c95..014e0b4 100644 --- a/src/vm/strings/regex_replace.c +++ b/src/vm/strings/regex_replace.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/strings/regex_search.c b/src/vm/strings/regex_search.c index 1baf602..8b1cf49 100644 --- a/src/vm/strings/regex_search.c +++ b/src/vm/strings/regex_search.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/strings/split.c b/src/vm/strings/split.c index edd2d43..c93e08f 100644 --- a/src/vm/strings/split.c +++ b/src/vm/strings/split.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/strings/substr.c b/src/vm/strings/substr.c index f485bb3..6b62375 100644 --- a/src/vm/strings/substr.c +++ b/src/vm/strings/substr.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/to_number.c b/src/vm/to_number.c index 1f2d0cd..e26a4b3 100644 --- a/src/vm/to_number.c +++ b/src/vm/to_number.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/to_string.c b/src/vm/to_string.c index 1a4ba38..31c0932 100644 --- a/src/vm/to_string.c +++ b/src/vm/to_string.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/typeof.c b/src/vm/typeof.c index 2240bfb..13c3cdb 100644 --- a/src/vm/typeof.c +++ b/src/vm/typeof.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license. diff --git a/src/vm/uclamp.c b/src/vm/uclamp.c index 18f6271..46e1c28 100644 --- a/src/vm/uclamp.c +++ b/src/vm/uclamp.c @@ -1,6 +1,6 @@ /** * This file is part of the Fun programming language. - * https://hanez.org/project/fun/ + * https://fun-lang.xyz/ * * Copyright 2025 Johannes Findeisen * Licensed under the terms of the Apache-2.0 license.