Skip to content
This repository was archived by the owner on May 24, 2022. It is now read-only.

Commit 0da23e4

Browse files
committed
Change case in VM name
1 parent 228f858 commit 0da23e4

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ OBJECTS := $(addprefix $(BUILD_DIR)/objects/, $(notdir $(SOURCES:.c=.o)))
1919
default: clean $(BUILD_DIR)/$(NAME)
2020

2121
$(BUILD_DIR)/$(NAME): $(OBJECTS)
22-
@ printf "%8s %-16s %s\n" $(CC) $@ "-I $(HEADER_DIR) $(CFLAGS) $(LDFLAGS)"
22+
@ printf "%s %-16s %s\n" $(CC) $@ "-I $(HEADER_DIR) $(CFLAGS) $(LDFLAGS)"
2323
@ mkdir -p $(BUILD_DIR)
2424
@ $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@
2525
@ rm -rf $(BUILD_DIR)/objects
2626

2727
$(BUILD_DIR)/objects/%.o: $(SOURCE_DIR)/%.c $(HEADERS)
28-
@ printf "%8s %-16s %s\n" $(CC) $< "-I $(HEADER_DIR) $(CFLAGS)"
28+
@ printf "%s %-16s %s\n" $(CC) $< "-I $(HEADER_DIR) $(CFLAGS)"
2929
@ mkdir -p $(BUILD_DIR)/objects
3030
@ $(CC) -c $(CFLAGS) -I $(HEADER_DIR) -o $@ $<
3131

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# The MeON Interpreter
1+
# The Meon Interpreter
22

33
[![MIT license](https://img.shields.io/badge/License-MIT-green.svg)](https://lbesson.mit-license.org/)
44
![Lines of code](https://img.shields.io/tokei/lines/github/heinthanth/meon?label=Line%20of%20Code)
55

6-
`MeON VM` is the Virtual Machine for `MeON` programming language which has some unique syntax and is designed for beginner in Programming. `MeON VM` can either interpret `MeON` or compile to native executable. It is distributed under [MIT License](LICENSE).
6+
`Meon VM` is the Virtual Machine for `Meon` programming language which has some unique syntax and is designed for beginner in Programming. `Meon VM` can either interpret `Meon` or compile to native executable. It is distributed under [MIT License](LICENSE).
77

88
## Documentations
99

@@ -33,17 +33,17 @@ build/meon --version
3333

3434
## Common Questions
3535

36-
Here are some FAQ about `MeON` project.
36+
Here are some FAQ about `Meon` project.
3737

38-
- WHY IT'S NAMED `MeON` ?
38+
- WHY IT'S NAMED `Meon` ?
3939

4040
- it's from **Melon** and then, I removed **L**.
41-
- It's like `Neon`, `Xeon` and sounds sweet.
41+
- It's like `Neon`, `Xenon` and sounds sweet.
4242

4343
- WHY THE FU\*K I CREATED THIS ?
4444
- No reason! I just want to learn something new by creating something new.
4545
- I gain massive knowledge about **How CPU works**, **How machine interpret and execute various instructions and jump to and from**.
4646

4747
## License
4848

49-
The `MeON` Interpreter is licensed under MIT. See [LICENSE](LICENSE) for more details.
49+
The `Meon` Interpreter is licensed under MIT. See [LICENSE](LICENSE) for more details.

src/main.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static void showInterpreterInfo(int exitStatus, bool shouldExit)
9393
{
9494
#define FD ((exitStatus) == 0 ? stdout : stderr)
9595
fprintf(FD, "\n");
96-
fprintf(FD, GRN "MeON VM " RESET "version " YEL VM_VERSION RESET " ( built on: " __TIMESTAMP__ " )\n");
96+
fprintf(FD, GRN "Meon VM " RESET "version " YEL VM_VERSION RESET " ( built on: " __TIMESTAMP__ " )\n");
9797
fprintf(FD, "(c) " YEL "2021 - present" RESET " Hein Thant Maung Maung. Licensed under " YEL "MIT.\n" RESET);
9898
fprintf(FD, "\n");
9999
#undef FD
@@ -111,8 +111,8 @@ static void showUsage(int exitStatus)
111111
fprintf(FD, YEL "COMMANDS:\n\n" RESET);
112112
fprintf(FD, GRN " -h, --help" RESET "\t\tShow Usage information like this.\n");
113113
fprintf(FD, GRN " -v, --version" RESET "\tShow VM version information.\n");
114-
fprintf(FD, GRN " -c, --compile" RESET "\tCompile MeON to native executable. (beta).\n");
115-
fprintf(FD, GRN " -r, --run" RESET "\t\tInterpret and evaluate MeON. (beta).\n");
114+
fprintf(FD, GRN " -c, --compile" RESET "\tCompile Meon to native executable. (beta).\n");
115+
fprintf(FD, GRN " -r, --run" RESET "\t\tInterpret and evaluate Meon. (beta).\n");
116116
fprintf(FD, "\n");
117117
fprintf(FD, YEL "EXAMPLES:\n\n" RESET);
118118
fprintf(FD, GRN " meon -r hello.meon" RESET "\tInterpret and evaluate 'hello.meon'.\n");

0 commit comments

Comments
 (0)