Losetta.CLI 0.10.5

dotnet tool install --global Losetta.CLI --version 0.10.5
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local Losetta.CLI --version 0.10.5
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=Losetta.CLI&version=0.10.5
nuke :add-package Losetta.CLI --version 0.10.5

Losetta

English Japanese

AliceScript

Build state LICENCE Commit Activity Nuget

Losetta is a customizable scripting language that can be used from C# and other CLR languages; Losetta conforms to SAIM, an implementation of AliceScript, and is compatible with AliceScript and AliceSister.

Losetta is released under the MIT License and is free of charge and without warranty. In addition, Losetta is developed based on CSCS.

For more information, see LICENCE.

How to use

Download and run the appropriate binary for your environment from Release.

When the program is launched for the first time, a .alice directory is created in the directory where the binaries are located, and startup scripts, etc. are installed.

If invoked without any arguments, the interactive execution mode (REPL) is invoked.

If a file name is specified as an argument, the file is read and executed.

For example, to run the script file test.txt, do the following.

alice test.txt

The script file is in the following format You may also use Shibang.

print("Hello,World!");

print("What your name?");
write("Name>>");

var name = read();

print("Hello,"+name+"!");

It can also be described in a more sophisticated way.

write("What your name?\r\nName>>");
print("Hello,{0}!",read());

Ah yeah, if you consider the order in which they are executed, you can write them on a single line.

print("Hello,{1}!",write("What your name?\r\nName>>"),read());

Access to the API is done after declaring it with the using directive.

using Alice.IO;

// Write "Hello" in test.txt.
file_write_text("test.txt","Hello");

It can also be called directly by specifying a namespace.

Alice.IO.file_write_text("test.txt","Hello");

Available APIs can be found in the API browser.

For detailed usage instructions, please refer to AliceScriptDocs (Japanese). For those seeking information on earlier versions, AliceScriptWiki may be useful.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
0.10.5 143 3/28/2024
0.10.4 180 12/31/2023
0.10.2 145 12/23/2023
0.10.1 108 12/10/2023
0.9.24 171 9/10/2023
0.9.23 146 9/3/2023
0.9.22 170 8/27/2023