Skip to content

Releases: floatplusplus/lang

Test

05 Aug 17:56

Choose a tag to compare

This is a Windows CLI v0.1

Basic Commands.!

Input

>> let name = Hello;
>> print(name);

Output
Hello

Input

>> let x = Y;
>> print(x);

Output
Y

Input

>> let print = lol;
>> print(print);

Output
lol

To exit the CLI.
Input
>> exit