FSC-Beauty-Compile
1.0.1
Programming languages are a good thing. I believe that there are so many needs for a good programming language to build plugins. That's why a much better solution is in development and this package goes out of support. Thank you for using this package.
dotnet add package FSC-Beauty-Compile --version 1.0.1
NuGet\Install-Package FSC-Beauty-Compile -Version 1.0.1
<PackageReference Include="FSC-Beauty-Compile" Version="1.0.1" />
paket add FSC-Beauty-Compile --version 1.0.1
#r "nuget: FSC-Beauty-Compile, 1.0.1"
// Install FSC-Beauty-Compile as a Cake Addin #addin nuget:?package=FSC-Beauty-Compile&version=1.0.1 // Install FSC-Beauty-Compile as a Cake Tool #tool nuget:?package=FSC-Beauty-Compile&version=1.0.1
FSC.Beauty NuGet Package README
Welcome to the FSC.Beauty! This language is designed to help you easily integrate scripting into your .NET applications. Whether you are looking to add scripting capabilities to your existing project or create new, dynamic applications, FSC.Beauty offers a simple yet powerful solution.
Features
- Integrate Scripting into .NET Applications: Use FSC.Beauty to add scripting functionalities to your .NET applications.
- Custom Functionality: Easily extend the language with your own functions.
- Cross-Platform Support: Compatible with various .NET-supported platforms.
- Simple Syntax: FSC.Beauty's easy-to-understand syntax makes scripting accessible for all levels of developers.
Getting Started
Usage
Here's a basic example to get you started with using FSC.Beauty in your .NET application. This example demonstrates how to set up a simple script and integrate custom functions.
Example Script
using FSC.Beauty.Runtime;
using FSC.Dirty.Runtime.Template;
using System.Text;
namespace fsc.beauty
{
internal class Program
{
static void Main(string[] args)
{
string code = @"
extern Title(""Example Script"")
extern WriteLine(""This script shows how you can write plugins with FSC.Beauty in your .NET Application including the call of own functions"")
extern LongBeep(10)
extern Pause()
extern Exit(0)
";
CustomFunctions customFunctions = new CustomFunctions();
customFunctions.LoadFunctions();
Runtime runtime = new Runtime(customFunctions);
runtime.AddScript(code);
runtime.Run();
}
}
}
public class CustomFunctions : IFscRuntime
{
public bool UseDefaultTemplate => true;
public CallMethodDictionary ExternCallMethods { get; set; } = new CallMethodDictionary();
public void LoadFunctions()
{
ExternCallMethods.Add("LongBeep", (object[] args) =>
{
int name = Convert.ToInt32(args[0]);
StringBuilder beep = new StringBuilder("B");
for (int i = 0; i < name; i++)
{
beep.Append("e");
}
beep.Append("p");
Console.WriteLine(beep.ToString());
return null;
});
}
}
In this example, we define a simple script that uses both built-in and custom functions. The CustomFunctions
class demonstrates how you can extend the scripting functionalities by adding your own methods.
Documentation
For more detailed documentation on using FSC.Beauty, including syntax guides and advanced features, please visit the Wiki on GitHub.
License
FSC.Beauty is released under MIT License, allowing for wide-ranging use and modification.
Thank you for choosing FSC.Beauty for your .NET scripting needs. We look forward to seeing the innovative ways you use this package in your applications!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- FSC-Dirty-Runtime (>= 1.0.0)
- FSC-Dirty-Runtime-Template (>= 1.0.0)
-
net8.0
- FSC-Dirty-Runtime (>= 1.0.0)
- FSC-Dirty-Runtime-Template (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Fixed a small bug, where it was impossible to call the same function twice with the same variable as parameter.