-
Notifications
You must be signed in to change notification settings - Fork 0
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
Point free function is ready #6
base: master
Are you sure you want to change the base?
Conversation
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.
Да, всё правильно, зачтена
[<EntryPoint>] | ||
let main argv = | ||
printfn "Hello World from F#!" | ||
0 // return an integer exit code |
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.
Это не нужно
[<Test>] | ||
let ``The results should be the same`` () = | ||
Check.QuickThrowOnFailure (fun x l -> | ||
multiply1 x l = multiply2 x l && multiply2 x l = multiply3 x l && multiply3 x l = multiplyPointFree x l) |
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.
Лучше было три разных теста написать, если одна из функций испортится, мы сразу будем знать, какая
No description provided.