Categories
TeaScript

Release of TeaScript 0.9.0 🌻

TeaScript 0.9.0 was published on 02. Feb. 2023 and is available for download now. πŸŒžβ˜›β˜›β˜› Download it here! ☚☚☚ TeaScript is availableas Host Application for Windows 10/11as Host Application for Linux (Ubuntu 22.04) πŸ”₯NEWπŸ”₯as C++ Library πŸ”₯NEWπŸ”₯ A snapshot of the TeaScript C++ Library is also available on Github. (But the download bundle here contains […]

Categories
C++Programming TeaScript

Script Language comparison for embed in C++

Intro Sometimes you need to extend your C++ Application dynamically during runtime with something what is not known at compile time yet. For easy things you can provide config files which may be changed prior before the application is started. The Application reads the config files on startup and use the contained settings accordingly. But […]

Categories
TeaScript

TeaScript VS ChaiScript Fibonacci Benchmark

I created a benchmark in C++ for testing and comparing TeaScript and its competitor ChaiScript by computing the Fibonacci number of 25 recursively. As a reference I did the same also in C++. The complete source code of the benchmark is available below. The result is pretty amazing, since with the used pre-release 0.8.0 of […]

Categories
C++Programming

TOP 5 most astounding C++20 Syntax

❆ Welcome πŸ‘‹ to my πŸŽ„πŸŽ…πŸŽ Christmas πŸŽ„πŸŽ…πŸŽβœ¨ Special✨ β†β˜ƒ! Today I present you my personal TOP 5 most astounding C++20 syntax constructs. Hope you will enjoy and maybe will see something new and/or interesting. Here it goes: No. 5: This line creates an empty lambda and directly executes it. Effectively, you can consider it […]

Categories
TeaScript

Release of TeaScript 0.8.0 (for πŸ€FREEπŸ€)

πŸ”₯πŸ”₯πŸ”₯ Available NOW!!! πŸ”₯πŸ”₯πŸ”₯ Proudly😎 and happily😊 I am hereby announcing the first Release of the πŸš€TeaScript 0.8.0πŸš€ Host Application (Standard version) available for πŸ€FREEπŸ€! β˜›β˜›β˜› Try and download it here! ☚☚☚ NO INSTALLATION REQUIRED – Just download, unpack and use it! It was a long journey since my first ideas in March until the […]

Categories
C++Programming

Unions are almost always a bad idea.

This post was viewed [wpstatistics stat=pagevisits time=total id=748] times. To use a classical union from C is almost always a bad idea in C++ and you should use std::variant instead. I show you why. And I also will show you in which big(!) trap I ran into myself with a union. We start with a […]

Categories
Uncategorized

Restructure and upcoming pre-release

I finally found the time to restructure one of the main and most important section of my page: The TeaScript page. 😎 Now it is divided in several sub-pages, also available directly in the top-right main menu. The new pages are: ✯ TeaScript Overview and Highlights, where a nice overview and the most impressive highlights […]

Categories
C++Programming

Quick and easy way to share Visual Studio settings in Git.

For rapid prototyping you don’t need to deal with cmake at all for can work in small groups or on different machines – the Visual Studio Property Sheets explained!

Categories
C++Programming

The best Visual Studio settings for modern C++ ?!

This post was viewed [wpstatistics stat=pagevisits time=total id=528] times. Following a list of my preferred and maybe (?) best Visual Studio settings for modern C++ programming based on my experience and evaluations. Each mentioned setting will be explained with some short sentences. I will cover β€œRelease” Builds only – and I use Visual Studio 2022, […]

Categories
TeaScript

Goals and planned features for TeaScript

Inspired from Lua and ChaiScript (see blog post) but also from so many ideas which came to my mind unrelated to these 2 existing variants, I developed and created a huge number of ideas and features as well as design and architectural aspects for TeaScript. After that I was comparing other programming languages to check […]