# How to  create F# console app in Ubuntu

  #### Create new folder and  give  following command:-          

`$ mkdir fsharpapplication`

`$ cd fsharpapplication`        
 
`$ dotnet new console --language F#`     


![consoleapp_f#_1.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1647954362938/xvuY3WGAQ.png)     



#### Run the app:-    
  
`$ dotnet run`   
  

![consoleapp_f#_2.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1647954568087/eKxrADI61.png)

