Revert "Fixed README"

This reverts commit 3beff945a4.
trunk
Goren Barak 2023-12-01 15:57:18 -05:00
parent 3beff945a4
commit 3c20321aba
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "templest"
version = "1.0.0"
version = "0.1.1"
edition = "2021"
description = "A procedural macro to manage temporary variables"
license = "Unlicense"

View File

@ -2,7 +2,7 @@
A single procedural macro to make temporary variables easier.
Code example:
```rs
use temp::temp;
use templest::temp;
fn main() {
let temp!() = 10;
@ -13,7 +13,7 @@ fn main() {
This code example prints `10` to the console.
If we add a new temporary variable, after we define the first one as 10, and define that as 20, than 20 will be printed.
```rs
use temp::temp;
use templest::temp;
fn main() {
let temp!() = 10;