Programming

F # 시작하기

procodes 2020. 6. 24. 08:05
반응형

F # 시작하기 [닫기]


F # 프로그래밍을 시작하려면 어떻게해야합니까?

언어를 배우거나 다른 언어에 비해 어떤 장점이 있는지 배우기위한 좋은 출발점 샘플은 무엇입니까?

어떤 도구가 필요합니까 (예 : Windows, Visual Studio 등)?


공식 진입 점은 다음과 같습니다. Microsoft F # 개발자 센터

빠른 맛을 얻으려면 브라우저에서 Silverlight 를 사용해보십시오 (Silverlight). (대화식 튜토리얼 연습 포함)

비디오 및 프레젠테이션을 시청하십시오 (BTW, Luca Bolognese의 Microsoft F # 소개 는 여전히 주제에 대한 최고의 프레젠테이션 중 하나입니다). 그런 다음 반드시 읽어야 할 다음 두 권의 책을 읽으십시오.

그 외에도 ...

빠른 링크

커뮤니티

Q & A

블로깅 / 출판

밋업 그룹

비디오

다른 책들

필요한 도구

비주얼 스튜디오:

  • F #은 VS2010 및 VS2012의 프로페셔널 에디션에 내장되어 있습니다.
  • F #은 Visual Studio 2012 Express for Web에 추가 구성 요소로 제공됩니다.
  • 또는 VS2010 통합 셸 ( 무료 다운로드 )을 설치할 수도 있습니다 . 그런 다음 무료 VS2010 버전의 F # 2.0 용 CTP MSI를 설치하십시오 .

MonoDevelop :

  • You can find lots of information about using F# within MonoDevelop here. The F# compiler and fsi.exe are now part of the Mono distribution.

The way I learned F# was to go through the following 3 steps.

First, I went through the introduction on the Try F# website which gives a good (but light) interactive introduction to the syntax and style of the language.

Next, to get a feel for actually solving problems in the language, I began solving some of the puzzles on the Project Euler site. I solved about the first ten problems and after each successful problem, I looked up an alternative F# implementation here. This gave a good feeling for how to work with sequences and using recursion and just generally becoming comfortable with the syntax.

Finally, I read the truly excellent 30-point guide Why use F# on http://fsharpforfunandprofit.com/. It takes you step-by-step through all of the major parts of the language describing how you can take advantage of them - with an eye towards C# developers. After that I encourage you to look around for other resources on the website, they are all very well written and highly insightful.

After completing these steps you should be ready to begin creating a real project in F#.


Brian already put together a great list, but I humbly submit my own small contribution to the rich ecosystem of F# learning material, the F# Koans- a simple, fun, and interactive way to learn the F# language through testing.

참고URL : https://stackoverflow.com/questions/11974624/getting-started-with-f

반응형