11# Zephyr Language
22
3- Zephyr is a general purpose, interpreted language written in C#.
3+ Zephyr is a general purpose, interpreted language written in C#.
44
5- Using VSCode? Try the badly made VSCode syntax highlighting [ VSCode Syntax Highlighter] ( https://github.com/itevie/zephyr-vscode-syntax-highlighting )
5+ Using VSCode? Try the badly made VSCode syntax highlighting [ VSCode Syntax Highlighter] ( https://github.com/itevie/zephyr-vscode-syntax-highlighting )
66
77## CLI
8- Zephyr has many CLI features built-in for running projects, creating new projects and an in-built package manager.
8+ Zephyr has many CLI features built-in for running projects, creating new projects and an in-built package manager.
99
10- To get help with the CLI, run ` zephyr help `
10+ To get help with the CLI, run ` zephyr help `
1111
1212## Repository
1313
14- The Zephyr program has a built-in package manager that interacts with an external repository server.
15- There is an "official" working one: https://zephyrrepository.itevie.repl.co
16- However, if you'd like to create your own, go to [ Zephyr Repository Server] ( https://github.com/itevie/ZephyrRepositoryServer )
17- Help with the package manager CLI are below.
14+ The Zephyr program has a built-in package manager that interacts with an external repository server.
15+ There is an "official" working one: https://zephyrrepository.itevie.repl.co
16+ However, if you'd like to create your own, go to [ Zephyr Repository Server] ( https://github.com/itevie/ZephyrRepositoryServer )
17+ Help with the package manager CLI are below.
1818
1919### Running a project
2020
21- To run a project / file, use ` zephyr [filename] ` or ` zephyr run [filename] `
22- Note: the recommended file extension for a Zephyr file is ` .zr `
21+ To run a project / file, use ` zephyr [filename] ` or ` zephyr run [filename] `
22+ Note: the recommended file extension for a Zephyr file is ` .zr `
2323
2424### Installing a package
2525
26- There IS an "official" package repository and it's: https://zephyrrepository.itevie.repl.co
27- It's the default repository URL, don't spam it or anything please, thanks
26+ There IS an "official" package repository and it's: https://zephyrrepository.itevie.repl.co
27+ It's the default repository URL, don't spam it or anything please, thanks
2828
29- ` zephyr install-package [package-name] [package-version] (--repository [url]) `
29+ ` zephyr install-package [package-name] [package-version] (--repository [url]) `
3030
3131package-name: The name of the package
32- package-version: The version of the package, or use ` @latest ` for the latest package
33- repository: The URL of the repository server, e.g. ` --repository http://localhost:3000 ` or ` -r http://localhost:3000 `
34-
32+ package-version: The version of the package, or use ` @latest ` for the latest package
33+ repository: The URL of the repository server, e.g. ` --repository http://localhost:3000 ` or ` -r http://localhost:3000 `
34+
3535### Uploading a package
3636
3737Uploading a package is very simple 1 line command.
@@ -52,8 +52,8 @@ To register run:
5252
5353` zephyr register [username] [password] (-r [url]) `
5454
55- Usernames are alphanumeric (+ _ ) and 1-15 in length.
56- If the repository server is not the official one, use a random password for the password.
55+ Usernames are alphanumeric (+ _ ) and 1-15 in length.
56+ If the repository server is not the official one, use a random password for the password.
5757
5858### Creating a new project
5959
0 commit comments