diff --git a/Cargo.lock b/Cargo.lock
index 781ea8d..186a0ef 100755
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,5 +3,5 @@
version = 3
[[package]]
-name = "bl"
+name = "td"
version = "1.4.0"
diff --git a/Cargo.toml b/Cargo.toml
index 62b819a..42a2a0c 100755
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-name = "bl"
+name = "td"
version = "1.4.0"
edition = "2021"
diff --git a/README.md b/README.md
index f495946..6fcc681 100755
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
A Language Made using Rust and LLVM.
Made by Pranav Verma.
-Uses the Extension `.bl`
+Uses the Extension `.td`
## Download
The Latest Compiled Build Can Be Found in the [Releases](https://github.com/PranavVerma-droid/Blue-Lagoon/releases) (For Windows and Linux)
@@ -22,7 +22,7 @@ The Sample Code Along with the Basic Syntax Can be Found in the [Code](code) Dir
```cargo build --release```
### Run
-```./bl -v```
+```./td -v```
diff --git a/bl b/bl
deleted file mode 120000
index 1086119..0000000
--- a/bl
+++ /dev/null
@@ -1 +0,0 @@
-./target/release/bl
\ No newline at end of file
diff --git a/code/file-1.bl b/code/file-1.td
similarity index 100%
rename from code/file-1.bl
rename to code/file-1.td
diff --git a/code/file-2.bl b/code/file-2.td
old mode 100644
new mode 100755
similarity index 100%
rename from code/file-2.bl
rename to code/file-2.td
diff --git a/code/file-3.bl b/code/file-3.td
old mode 100644
new mode 100755
similarity index 100%
rename from code/file-3.bl
rename to code/file-3.td
diff --git a/code/file-4.bl b/code/file-4.td
old mode 100644
new mode 100755
similarity index 100%
rename from code/file-4.bl
rename to code/file-4.td
diff --git a/code/file-5.bl b/code/file-5.td
old mode 100644
new mode 100755
similarity index 100%
rename from code/file-5.bl
rename to code/file-5.td
diff --git a/code/file-6.bl b/code/file-6.td
old mode 100644
new mode 100755
similarity index 100%
rename from code/file-6.bl
rename to code/file-6.td
diff --git a/code/file-7.bl b/code/file-7.td
old mode 100644
new mode 100755
similarity index 100%
rename from code/file-7.bl
rename to code/file-7.td
diff --git a/src/main.rs b/src/main.rs
index 3d678a7..ec3aca7 100755
--- a/src/main.rs
+++ b/src/main.rs
@@ -20,8 +20,8 @@ fn main() {
let filename = &args[1];
- if !filename.ends_with(".bl") {
- eprintln!("Error: Input file must have a .bl extension");
+ if !filename.ends_with(".td") {
+ eprintln!("Error: Input file must have a .td extension");
std::process::exit(1);
}
@@ -46,10 +46,10 @@ fn main() {
fn help() {
println!("");
- println!("Blue Lagoon Programming Language");
+ println!("Tidal Programming Language");
println!("Made by Pranav Verma - For the Lagoon Project.");
println!("");
- println!("Usage: bl [--verbose | -v]");
+ println!("Usage: td [--verbose | -v]");
println!("Options:");
println!(" --verbose, -v Enable verbose output");
println!(" help, --help, -h Display this help message");
diff --git a/td b/td
new file mode 120000
index 0000000..c408e6e
--- /dev/null
+++ b/td
@@ -0,0 +1 @@
+./target/release/td
\ No newline at end of file