컨솔에 문자 출력하는 F# 구문은

       print "문자열(스트링)"



       printfn "문자열(스트링)"

이다. 여기서 printfnd는 출력 후 개행한다는 것만 다르나.
 

소스 파일명: hello.fs
------------------------------[소스 시작]
printfn "Hello, world!"
------------------------------[소스 끝]

(한글이 있는 소스는 옵션 --codepage:949 를 사용하여 컴파일한다.)
컴파일> fsc hello.fs
실행> hello
Hello, world!


Posted by Scripter
,