diff --git a/src/translator/dowrap/dowrap.c b/src/translator/dowrap/dowrap.c index a0098b3..0a5f8f4 100644 --- a/src/translator/dowrap/dowrap.c +++ b/src/translator/dowrap/dowrap.c @@ -1,3 +1,10 @@ +/* + * SPDX-FileCopyrightText: 2025 William Bell + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + + #include "dowrap.h" #include diff --git a/src/translator/return/return.c b/src/translator/return/return.c index f8bf8c8..2ae2f76 100644 --- a/src/translator/return/return.c +++ b/src/translator/return/return.c @@ -1,3 +1,9 @@ +/* + * SPDX-FileCopyrightText: 2025 William Bell + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + #include "return.h" size_t translate_parsed_return(Translated *translated, diff --git a/testing.ar b/testing.ar index 9b75e3d..ae2ef9e 100644 --- a/testing.ar +++ b/testing.ar @@ -6,4 +6,5 @@ let y = 1 let term = y let x = do - return x \ No newline at end of file + y + return term \ No newline at end of file