diff --git a/CMakeLists.txt b/CMakeLists.txt index 65ff1d3..473dd62 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(fun VERSION 0.37.30 LANGUAGES C) +project(fun VERSION 0.37.31 LANGUAGES C) set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED ON) diff --git a/examples/data/htdocs/info.fun b/examples/data/htdocs/info.fun index 93c3665..4473ec0 100644 --- a/examples/data/htdocs/info.fun +++ b/examples/data/htdocs/info.fun @@ -1,5 +1,3 @@ -#!/usr/bin/env fun - /* * This file is part of the Fun programming language. * https://fun-lang.xyz/ @@ -11,14 +9,12 @@ * Added: 2025-12-28 */ -content = fun_version() - -print("
") +print("") print("Current Path: " + env("PATH") + "
") print("Current User: " + env("USER") + "
") print("Time: " + date_format(time_now_ms(), "%Y-%m-%d %H:%M:%S") + "
") -print("Version: " + to_string(content) + "
") +print("Version: " + to_string(fun_version()) + "
") print("