Skip to content

Commit

Permalink
read me
Browse files Browse the repository at this point in the history
  • Loading branch information
tacheraSasi committed Dec 15, 2024
1 parent cbec41a commit 7fc1795
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ Follow the steps below to easily install **VintLang** on your Linux or macOS sys
```bash
vint -v
```

4. **Install the vintlang extension from vscode**

Install the official vint language support extension int vscode called **`vintlang`**
Install the official vint language support extension int vscode called **`vintlang`**

---

Expand Down Expand Up @@ -65,13 +66,22 @@ Follow the steps below to easily install **VintLang** on your Linux or macOS sys
vint -v
```

4. **Initialize a vint project:**

Create a simple boilerplate vint project

```bash
vint init <optional:project-name>
```

---

### Summary of Installation Steps:

1. **Download the Binary** using `curl` for your system (Linux or macOS).
2. **Extract the Binary** to `/usr/local/bin` (or another globally accessible directory).
3. **Verify the Installation** by checking the version with `vint -v`.
4. **Initialize a vintlang project** by running `vint init <projectname>`.

## Sample Code

Expand All @@ -84,8 +94,8 @@ import time // Importing time module to work with date and time
// Main logic to split and print characters of a string
let name = "VintLang"
s = name.split("")
for i in s {
s = name.split("")
for i in s {
print(i)
}
```
Expand Down

0 comments on commit 7fc1795

Please sign in to comment.