Skip to content

Commit ac4b982

Browse files
author
Jaroslaw Zabiello
committed
updates
1 parent b05bf7e commit ac4b982

File tree

8 files changed

+35
-26
lines changed

8 files changed

+35
-26
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/.history/
22
/.vscode/
3-
/.DS_Store
3+
/**/.DS_Store
44

55
/words_extractor_pypy/
66
/.elixir_ls/
7+
/.idea/
8+
/old/

example-crystal/README.md

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,15 @@
1-
# example-crystal
1+
# Crystal
22

3-
TODO: Write a description here
4-
5-
## Installation
6-
7-
TODO: Write installation instructions here
8-
9-
## Usage
3+
## setup and run
104

5+
```
116
crystal build --release -Dpreview_mt src/example-crystal.cr -o main
127
CRYSTAL_WORKES=10 ./main
8+
```
139

1410
MacOS 12.2
1511
Crystal 1.3.2
1612
MBP 16" M1Max 10 cores
1713
Total files: 123
1814
Total size: 504 MB
1915
Total time: 6.0035 s
20-
21-
## Development
22-
23-
TODO: Write development instructions here
24-
25-
## Contributing
26-
27-
1. Fork it (<https://github.com/your-github-user/example-crystal/fork>)
28-
2. Create your feature branch (`git checkout -b my-new-feature`)
29-
3. Commit your changes (`git commit -am 'Add some feature'`)
30-
4. Push to the branch (`git push origin my-new-feature`)
31-
5. Create a new Pull Request
32-
33-
## Contributors
34-
35-
- [Jaroslaw Zabiello](https://github.com/your-github-user) - creator and maintainer

example-crystal/main

-337 KB
Binary file not shown.

example-golang/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Golang
2+
3+
## setup and run
14

25
```
36
make build

example-python/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Python
2+
3+
## setup and run
4+
15
```
26
python -m venv .venv
37
source .venv/bin/activat

example-ruby/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Ruby
2+
3+
## setup and run
4+
15
```
26
ruby words.rb
37
```

example-rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "words_extractor_rs"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Jaroslaw Zabiello <[email protected]>"]
55
edition = "2018"
66

example-rust/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Rust
2+
3+
## setup and run
4+
5+
```
6+
cargo build --release
7+
target/release/words_extractor_rs
8+
9+
```
10+
11+
MacOS 12.2
12+
Rust 1.58.1
13+
MBP 16" M1Max 10 cores
14+
Total files: 123
15+
Total size: 504 MB
16+
Total time: 0.3521 s

0 commit comments

Comments
 (0)