Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds an F# interview kata template with a small console app, unit test project, and devcontainer support.
Changes:
- Introduces an F# application project with a simple
Greeter.greetfunction and console entrypoint. - Adds an xUnit-based F# unit test project referencing the application.
- Adds supporting developer tooling (README, Makefile, solution file, gitignore, devcontainer config).
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| f-sharp/Application/Application.fsproj | Defines the F# console application project targeting net9.0. |
| f-sharp/Application/Greeting.fs | Adds the Greeter.greet implementation used by the app/tests. |
| f-sharp/Application/Program.fs | Adds a minimal console entrypoint calling Greeter.greet. |
| f-sharp/UnitTests/UnitTests.fsproj | Adds F# test project with xUnit + test SDK dependencies and project reference. |
| f-sharp/UnitTests/Tests.fs | Adds a basic xUnit test validating Greeter.greet. |
| f-sharp/FSharp.slnx | Adds solution definition including app and test projects. |
| f-sharp/Makefile | Adds init, verify, and run commands via dotnet CLI. |
| f-sharp/README.md | Adds template README with commands and kata placeholder sections. |
| f-sharp/.gitignore | Ignores build artifacts (bin/obj). |
| .devcontainer/f-sharp/devcontainer.json | Adds devcontainer for .NET 9 + F# tooling. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
kylehoehns
approved these changes
Jan 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.