Skip to content

Commit 2bf6ac9

Browse files
committed
Initial commit
0 parents  commit 2bf6ac9

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
*.env
3+
/target
4+
tmp
5+
*.tmp

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[package]
2+
name = "regexplanet-rust"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# regexplanet-rust
2+
3+
This is the [Rust language](https://www.rust-lang.org/) backend for RegexPlanet, a tool for online regular expression testing.
4+
5+
See [API docs](http://www.regexplanet.com/support/api.html) for what it is supposed to do.
6+
7+
See [Rust language online regex test page](http://www.regexplanet.com/advanced/rust/index.html) to use it to test your regular expressions.

src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)