-
Notifications
You must be signed in to change notification settings - Fork 2
Add Task to run examples #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Task to run examples #11
Conversation
thunderbiscuit
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a few nits but otherwise this looks good!
| plugins { | ||
| kotlin("jvm") version "2.1.10" | ||
| application | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I try to keep the fully qualified names for plugins when I can. This has over time also become the recommended way from Google to add plugins, because of how confusing the shortcuts can be. Here I suggest using
plugins {
id("org.jetbrains.kotlin.jvm") version "2.1.10"
id("application")
}| ```sh | ||
| bash ./scripts/build-<your-local-architecture>.sh | ||
| ``` | ||
| ## Run example files |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Markdown is very flexible, but just for consistency I try to follow the Google Style Guide for Markdown. In this case, you'd add blank spaces between your headings and text (one blank line before and one after).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
95221ae to
c13a681
Compare
thunderbiscuit
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK c13a681.
No description provided.