Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,166 questions

40,722 answers

573 users

How to concatenate two strings in F#

2 Answers

0 votes
let cs =   
 let s = "F#" 
 s + " " + "Programming" 
      
printf "%s" cs  
     
     
 
    
(* 
run:
    
F# Programming
    
*)

 





answered Sep 21, 2020 by avibootz
0 votes
let s1 = "F#"  
let s2 = "Programming"  

let s3 = s1 + " " + s2   

printf "%s" s3  
    
    

   
(* 
run:
   
F# Programming
   
*)

 





answered Sep 21, 2020 by avibootz

Related questions

1 answer 68 views
2 answers 50 views
1 answer 34 views
34 views asked Dec 31, 2022 by avibootz
1 answer 72 views
1 answer 96 views
...