about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-06-11 00:16:17 +0200
committerBaitinq <[email protected]>2025-06-11 00:16:17 +0200
commitfa92a157746ae17f295d31b7a047dfeb99624a13 (patch)
tree71e469e67a70df15542d873ebe223654def6111b /src
parentstdlib: Remove println (diff)
downloadpry-lang-fa92a157746ae17f295d31b7a047dfeb99624a13.tar.gz
pry-lang-fa92a157746ae17f295d31b7a047dfeb99624a13.tar.bz2
pry-lang-fa92a157746ae17f295d31b7a047dfeb99624a13.zip
Misc: Rename lang
Diffstat (limited to 'src')
-rw-r--r--src/bootstrap/codegen.pry (renamed from src/bootstrap/codegen.src)2
-rw-r--r--src/bootstrap/llvm.pry (renamed from src/bootstrap/llvm.src)0
-rw-r--r--src/bootstrap/main.pry (renamed from src/bootstrap/main.src)10
-rw-r--r--src/bootstrap/parser.pry (renamed from src/bootstrap/parser.src)0
-rw-r--r--src/bootstrap/tokenizer.pry (renamed from src/bootstrap/tokenizer.src)4
5 files changed, 8 insertions, 8 deletions
diff --git a/src/bootstrap/codegen.src b/src/bootstrap/codegen.pry
index 7059508..7293c09 100644
--- a/src/bootstrap/codegen.src
+++ b/src/bootstrap/codegen.pry
@@ -1,4 +1,4 @@
-import "llvm.src";
+import "llvm.pry";
 
 let codegen = struct {
 	llvm_module: LLVMModuleRef,
diff --git a/src/bootstrap/llvm.src b/src/bootstrap/llvm.pry
index 8cd600f..8cd600f 100644
--- a/src/bootstrap/llvm.src
+++ b/src/bootstrap/llvm.pry
diff --git a/src/bootstrap/main.src b/src/bootstrap/main.pry
index 571cc03..29e41ff 100644
--- a/src/bootstrap/main.src
+++ b/src/bootstrap/main.pry
@@ -6,17 +6,17 @@ extern ftell = (*i8) => i64;
 extern fread = (*i8, i64, i64, *i8) => i64;
 extern fclose = (*i8) => *i8;
 
-import "!stdlib.src";
-import "!mem.src";
+import "!stdlib.pry";
+import "!mem.pry";
 
 let slice = struct {
 	data: *void,
 	data_len: i64,
 };
 
-import "tokenizer.src";
-import "parser.src";
-import "codegen.src";
+import "tokenizer.pry";
+import "parser.pry";
+import "codegen.pry";
 
 let read_file = (filename: *i8, alloc: *arena) => slice {
 	let file = fopen(filename, "r");
diff --git a/src/bootstrap/parser.src b/src/bootstrap/parser.pry
index daac296..daac296 100644
--- a/src/bootstrap/parser.src
+++ b/src/bootstrap/parser.pry
diff --git a/src/bootstrap/tokenizer.src b/src/bootstrap/tokenizer.pry
index 8d7f997..a2cafb4 100644
--- a/src/bootstrap/tokenizer.src
+++ b/src/bootstrap/tokenizer.pry
@@ -3,8 +3,8 @@ extern memcpy = (*void, *void, i64) => void;
 extern sprintf = (*i8, *i8, varargs) => void;
 extern atoi = (*i8) => i64;
 
-import "!stdlib.src";
-import "!mem.src";
+import "!stdlib.pry";
+import "!mem.pry";
 
 /* Keywords */
 let TOKEN_IMPORT     = 1;