From cb8d5685bb3f94edb0d9e1dab9982bdceec8ae17 Mon Sep 17 00:00:00 2001 From: hanez Date: Tue, 30 Sep 2025 17:49:31 +0200 Subject: [PATCH] Added missing license header to ./demo.fun that I missed in the last change. (0.13.2) --- CMakeLists.txt | 2 +- demo.fun | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8dba824..1dec3e0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.16) -project(fun VERSION 0.13.1 LANGUAGES C) +project(fun VERSION 0.13.2 LANGUAGES C) set(CMAKE_C_STANDARD 11) set(CMAKE_C_STANDARD_REQUIRED ON) diff --git a/demo.fun b/demo.fun index b6d5b03..c3d340a 100644 --- a/demo.fun +++ b/demo.fun @@ -1,5 +1,14 @@ #!/usr/bin/env fun +/* + * This file is part of the Fun programming language. + * https://hanez.org/project/fun/ + * + * Copyright 2025 Johannes Findeisen + * Licensed under the terms of the ISC license. + * https://opensource.org/license/isc-license-txt + */ + // Fun Interactive Demo // Run: FUN_LIB_DIR="$(pwd)/lib" ./build/fun demo.fun (Linux/macOS/FreeBSD) // $env:FUN_LIB_DIR="$PWD\lib"; .\build\fun.exe demo.fun (Windows PowerShell)