Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

f sharp functions calling each other

module rec PingPong = // <------ rec keyword here.

    let pong() = 
        printfn "pong"
        ping() 

    let ping () = 
        printfn "ping"
        pong()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #sharp #functions #calling
ADD COMMENT
Topic
Name
6+2 =