Added Vlang and updated vlang in readme#63
Added Vlang and updated vlang in readme#63manvith12 merged 2 commits intomanvith12:mainfrom Dharshan2208:main
Conversation
Reviewer's GuideThis PR adds a new Vlang implementation by introducing a vlang.v source file that uses the readline module for an interactive prompt with error handling, and updates the README to include the Vlang entry in the list of language implementations. Class diagram for the new Vlang implementationclassDiagram
class Readline {
}
class Readline.Readline {
+read_line(prompt: string): string | error
}
class main {
}
Readline.Readline <.. main : uses
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
WalkthroughA new V language implementation was added, providing a simple interactive command-line program that reads user input and responds. The README documentation was updated to reference this new Vlang implementation in the list of supported programming languages. No changes were made to any exported or public entities outside of the new Vlang file. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant VlangProgram
User->>VlangProgram: Start program
VlangProgram->>User: Prompt "Ask me something: "
User->>VlangProgram: Enter input
VlangProgram->>User: Print "You asked: [input]"
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
🔇 Additional comments (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
Thank you for submitting your pull request! 🙌 We'll review it as soon as possible. In the meantime, please ensure that your changes align with our [CONTRIBUTING.md]. If there are any specific instructions or feedback regarding your PR, we'll provide them here. Thanks again for your contribution! 😊 |
There was a problem hiding this comment.
Hey @Dharshan2208 - I've reviewed your changes and they look great!
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
|
🎉 Your pull request has been successfully merged! 🎉 Thank you for your valuable contribution to our project. Your efforts are greatly appreciated. Feel free to reach out if you have any more contributions or if there's anything else we can assist you with. Keep up the fantastic work! 🚀 |
Added a new file named vlang to the project and also updated the readme for vlang.
Summary by Sourcery
Add Vlang example implementation and update documentation to reference it
New Features:
Documentation:
Summary by CodeRabbit