Skip to content

Commit 958a739

Browse files
authored
Update README.md
1 parent 5dafb47 commit 958a739

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# JackScript
22
A string and vector library for C++
33

4-
##Version 0.1.2
5-
##Release Version = 1.0
4+
## Current Version
5+
version 0.1.2
6+
7+
## First Release Version
8+
version 1.0
9+
10+
## Usage
11+
```c++
12+
#import <string>
13+
#import <vector>
14+
#import <JackScript.h>
15+
16+
main(){
17+
// declarations
18+
std::vector<Char> MyArray;
19+
std::string MyString = "hello world";
20+
21+
// call function
22+
MyArray = JS::stringToVector(MyString);
23+
24+
}
25+
```

0 commit comments

Comments
 (0)