F#
-
F# Async TCP Server Simple ExampleF# 2021. 1. 2. 18:59
[Original Source] http://www.fssnip.net/1E/title/Async-TCP-Server [Modifed] .net core에서 컴파일되도록 일부 수정한 코드입니다. (Option type 적용등) 작동 확인 : 2021-01-02 open System open System.Net open System.Net.Sockets open System.Threading type Socket with member socket.AsyncAccept() = Async.FromBeginEnd(socket.BeginAccept, socket.EndAccept) member socket.AsyncReceive(buffer: byte [], ?offset, ?count) = let offset ..
-
F# 에서 Grpc 사용하기F# 2020. 2. 10. 22:34
F#에서 GRPC를 사용하는 방법에 대해서 알아보자. (IDE에서 다음 작업을 진행하는 경우 더 편리하게 진행가능하다.) 1. 테스트용 솔루션 생성 // dotnet grpc tool 을 전역으로 설치 $dotnet tool install -g dotnet-grpc // 솔루션 생성 $ dotnet new sln -o GrpcTest // 솔루션 디렉토리 진입 $ cd ./GrpcTest 2. F# Server 프로젝트 생성 // 서버 콘솔 프로젝트 생성 $ dotnet new console -lang f# -o Server // 솔루션에 추가 $ dotnet sln add ./Server/Server.fsproj 3. F# Client 프로젝트 생성 // F# 클라이언트 프로젝트 생성 $ dotnet ..
-
Console 에서 F# 솔루션 및 프로젝트 생성하기F# 2019. 4. 14. 18:41
1. 솔루션 생성 $ dotnet new sln -n [Solution name] 예) dotnet new sln -n FunGame 2. 콘솔 프로젝트 생성 $ dotnet new console -lang F# -n [Project Name] 예) dotnet new console -lang F# -n Game 3. 유닛 테스트 프로젝트 생성 $ dotnet new xunit -lang F# -n [Unit test proejct name] 예) dotnet new xunit -lang F# -n Game.Test 4. (생성한) 콘솔 프로젝트를 솔루션에 추가 $ dotnet add [Solution name.sln] add [./path/to/project.fsproj] 예) dotnet add Fu..
-
visual studio code 에서 F# 개발(컴파일 및 디버깅)하기F# 2019. 2. 7. 22:05
Visual studio code 에서 F# 언어로 개발(컴파일 및 디버깅)이 가능하도록 환경을 설정하는 방법을 알아본다.이 문서에서는 .NET core 버젼 설치를 기준으로 한다. (.Net framwork 기반 설치도 크게 다르지 않다.) 1. Visual studio code 최신 버전 설치https://code.visualstudio.com/download 2. NetCore 2.2 버전 설치https://dotnet.microsoft.com/download 3. Visual studio 2017용 Build tools 설치https://visualstudio.microsoft.com/ko/downloads/?utm_medium=microsoft&utm_source=docs.microsoft.co..