EZCode 3.0.0
dotnet add package EZCode --version 3.0.0
NuGet\Install-Package EZCode -Version 3.0.0
<PackageReference Include="EZCode" Version="3.0.0" />
paket add EZCode --version 3.0.0
#r "nuget: EZCode, 3.0.0"
// Install EZCode as a Cake Addin #addin nuget:?package=EZCode&version=3.0.0 // Install EZCode as a Cake Tool #tool nuget:?package=EZCode&version=3.0.0
Welcome!
Welcome to EZCode! EZCode is a comprehensive programming language built with C#. EZCode is designed to be easy to use straightforward, although sometimes it can be tuff. Refer to Community to learn more on how to contribute!
Install EZCode using the installer from the latest release and click Installer.zip to download it.
EZCode v3.0.0 Example
// include main package
include main
make ^int {NAME} {VALUE} => int {NAME} new : {VALUE}
// turns: int name 0
// into: int name new : 0
// which is the valid way to create class instance
// color class that stores R, G, B values
// looks for c[R;G;B] and turns that into a new color instance
class color {
explicit watch c\[{R};{G};{B}\] => set : R, G, B
int R 0
int G 0
int B 0
method set : @int:r, @int:g, @int:b {
R = r
G = g
B = b
}
}
// prints color with the new instance of color class c[50;60;90]
printColor : c[50;60;90]
method printColor : @color:c {
print The color: 'c:R' 'c:G' 'c:B'
}
// Outputs:
// The color: 50 60 90
Command Line
To run EZCode, use the following command (assuming you have installed it HERE)
ez FILE_PATH
To start a integrated environment, use:
ez start
To create a project, use:
ez new project NAME
View all commands with:
ez help
Docs
Packages
All the official Packages are in Packages Repository. To add your own, create a pull request and it will be looked over.
Community
Contribute to the community in many ways including the EZCode Project Repository. To contribute, create a pull request and it will be accepted as soon as possible.
License
EZCode is released under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.