SlideShare ist ein Scribd-Unternehmen logo
1 von 16
Getting Started with F# Web Development  October 21, 2010 1
Daniel MohlC# MVP and F# Insider October 21, 2010 2 dmohl@yahoo.com www.twitter.com/dmohl blog.danielmohl.com
What Are We Doing? Why F#? F# Primer/Review F#/C# Silverlight Example F# Silverlight Example F#/C# ASP.NET MVC 2 Example WebSharper Example What Wasn’t Covered? Wrap it Up October 21, 2010 3
Why F#? Simple Code to Solve Complex Problems Terse Yet Readable Less Errors Features Not In Other Mainstream Languages Staying Ahead of the Competition October 21, 2010 4
Why F# for Web Dev? Asynchronous Workflows and Reactive Programming F#/JavaScript Commonalities Easier to support next generation web development  Silverlight HTML5 (Web Sockets, Canvas)  Twitter Feed Sample (Reactive Programming) Web Socket Example Canvas Example October 21, 2010 5
F# Primer/Review Whitespace Matters The let Keyword Pattern Matching More During the Demos October 21, 2010 6
Whitespace Matters October 21, 2010 7 //F# open System let doSomethingval =  val + val Console.WriteLine    (doSomething 1) //C# using System; namespace ConsoleApplication1 { class Program { static intdoSomething(intval) { return val + val; } static void Main(string[] args) { Console.WriteLine( doSomething(1));             } } }
The let Keyword October 21, 2010 8 //F# open System let val2 = 1 let doSomethingval =  val + val2 Console.WriteLine    (doSomething 1) //C# using System; namespace ConsoleApplication1 {  class Program {    static int val2 = 1; static intdoSomething(intval) { return val+ val2; } static void Main(string[] args) { Console.WriteLine( doSomething(1));             } } }
Pattern Matching October 21, 2010 9 Kind of like a switch/case statement, but so much more!
F#/C# Silverlight Example http://visualstudiogallery.msdn.microsoft.com/en-us/64f3d710-04c1-42d2-9e5d-4e20a19a7666 October 21, 2010 10
F# Silverlight Example http://visualstudiogallery.msdn.microsoft.com/en-us/f0e9a557-3fd6-41d9-8518-c1735b382c73 October 21, 2010 11
F#/C# ASP.NET MVC2 Example http://visualstudiogallery.msdn.microsoft.com/en-us/c36619e5-0d4a-4067-8ced-decd18e834c9 October 21, 2010 12
WebSharper Example http://visualstudiogallery.msdn.microsoft.com/en-us/288b94ea-0ea7-4dde-8906-f72eb22fbe1b October 21, 2010 13
What Wasn’t Covered? October 21, 2010 14 Lots of F# Features Other F# Web Frameworks Bistro Suave Frank and Frack
More Information October 21, 2010 15 Books - http://msdn.microsoft.com/en-us/fsharp/gg262865.aspx F# MSDN - http://msdn.microsoft.com/en-us/fsharp/gg262865.aspx Blogs Twitter Ask – F# has the greatest community around
Daniel MohlC# MVP and F# Insider October 21, 2010 16 dmohl@yahoo.com www.twitter.com/dmohl blog.danielmohl.com

Weitere ähnliche Inhalte

Ähnlich wie Getting Started with F# Web Development

Building Better Web Apps with F#
Building Better Web Apps with F#Building Better Web Apps with F#
Building Better Web Apps with F#
Dan Mohl
 
What the math geeks don't want you to know about F#
What the math geeks don't want you to know about F#What the math geeks don't want you to know about F#
What the math geeks don't want you to know about F#
Kevin Hazzard
 
Bp308 Ibm Lotus Domino Web Facelift Using Ajax And Dxl
Bp308 Ibm Lotus Domino Web Facelift Using Ajax And DxlBp308 Ibm Lotus Domino Web Facelift Using Ajax And Dxl
Bp308 Ibm Lotus Domino Web Facelift Using Ajax And Dxl
dominion
 

Ähnlich wie Getting Started with F# Web Development (20)

Building Better Web Apps with F#
Building Better Web Apps with F#Building Better Web Apps with F#
Building Better Web Apps with F#
 
Bay NET Aug 19 2009 presentation ppt
Bay  NET Aug 19 2009 presentation pptBay  NET Aug 19 2009 presentation ppt
Bay NET Aug 19 2009 presentation ppt
 
Practical F#
Practical F#Practical F#
Practical F#
 
Functional webapplicaations using fsharp and suave
Functional webapplicaations using fsharp and suaveFunctional webapplicaations using fsharp and suave
Functional webapplicaations using fsharp and suave
 
Getting+started+with+f#+web+development
Getting+started+with+f#+web+developmentGetting+started+with+f#+web+development
Getting+started+with+f#+web+development
 
JMP208 The Never Ending Integration Story: How to Integrate Your Lotus Notes,...
JMP208 The Never Ending Integration Story: How to Integrate Your Lotus Notes,...JMP208 The Never Ending Integration Story: How to Integrate Your Lotus Notes,...
JMP208 The Never Ending Integration Story: How to Integrate Your Lotus Notes,...
 
Lotusphere 2011 - Jmp208
Lotusphere 2011 - Jmp208Lotusphere 2011 - Jmp208
Lotusphere 2011 - Jmp208
 
What the math geeks don't want you to know about F#
What the math geeks don't want you to know about F#What the math geeks don't want you to know about F#
What the math geeks don't want you to know about F#
 
Bp308 Ibm Lotus Domino Web Facelift Using Ajax And Dxl
Bp308 Ibm Lotus Domino Web Facelift Using Ajax And DxlBp308 Ibm Lotus Domino Web Facelift Using Ajax And Dxl
Bp308 Ibm Lotus Domino Web Facelift Using Ajax And Dxl
 
EF Core (RC2)
EF Core (RC2)EF Core (RC2)
EF Core (RC2)
 
C# Introduction brief
C# Introduction briefC# Introduction brief
C# Introduction brief
 
Characteristics of c#
Characteristics of c#Characteristics of c#
Characteristics of c#
 
Bp205
Bp205Bp205
Bp205
 
3iGlobal Pvt. Ltd. - Presentation on Web 2.0 Technologies
3iGlobal Pvt. Ltd. - Presentation on Web 2.0 Technologies3iGlobal Pvt. Ltd. - Presentation on Web 2.0 Technologies
3iGlobal Pvt. Ltd. - Presentation on Web 2.0 Technologies
 
3iGlobal Pvt. Ltd. - Presentation on Web 2.0 Technologies
3iGlobal Pvt. Ltd. - Presentation on Web 2.0 Technologies3iGlobal Pvt. Ltd. - Presentation on Web 2.0 Technologies
3iGlobal Pvt. Ltd. - Presentation on Web 2.0 Technologies
 
WPF Applications, It's all about XAML these days
WPF Applications, It's all about XAML these daysWPF Applications, It's all about XAML these days
WPF Applications, It's all about XAML these days
 
Progressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source worldProgressive f# tutorials nyc don syme on keynote f# in the open source world
Progressive f# tutorials nyc don syme on keynote f# in the open source world
 
IE9: Power, Peformance and Standards
IE9: Power, Peformance and StandardsIE9: Power, Peformance and Standards
IE9: Power, Peformance and Standards
 
11 Reasons Why C# is the Right Choice for Your Next Project
11 Reasons Why C# is the Right Choice for Your Next Project11 Reasons Why C# is the Right Choice for Your Next Project
11 Reasons Why C# is the Right Choice for Your Next Project
 
A developer's first impressions for windows 8
A developer's first impressions for windows 8A developer's first impressions for windows 8
A developer's first impressions for windows 8
 

Kürzlich hochgeladen

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Kürzlich hochgeladen (20)

How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 

Getting Started with F# Web Development

  • 1. Getting Started with F# Web Development October 21, 2010 1
  • 2. Daniel MohlC# MVP and F# Insider October 21, 2010 2 dmohl@yahoo.com www.twitter.com/dmohl blog.danielmohl.com
  • 3. What Are We Doing? Why F#? F# Primer/Review F#/C# Silverlight Example F# Silverlight Example F#/C# ASP.NET MVC 2 Example WebSharper Example What Wasn’t Covered? Wrap it Up October 21, 2010 3
  • 4. Why F#? Simple Code to Solve Complex Problems Terse Yet Readable Less Errors Features Not In Other Mainstream Languages Staying Ahead of the Competition October 21, 2010 4
  • 5. Why F# for Web Dev? Asynchronous Workflows and Reactive Programming F#/JavaScript Commonalities Easier to support next generation web development Silverlight HTML5 (Web Sockets, Canvas) Twitter Feed Sample (Reactive Programming) Web Socket Example Canvas Example October 21, 2010 5
  • 6. F# Primer/Review Whitespace Matters The let Keyword Pattern Matching More During the Demos October 21, 2010 6
  • 7. Whitespace Matters October 21, 2010 7 //F# open System let doSomethingval = val + val Console.WriteLine (doSomething 1) //C# using System; namespace ConsoleApplication1 { class Program { static intdoSomething(intval) { return val + val; } static void Main(string[] args) { Console.WriteLine( doSomething(1)); } } }
  • 8. The let Keyword October 21, 2010 8 //F# open System let val2 = 1 let doSomethingval = val + val2 Console.WriteLine (doSomething 1) //C# using System; namespace ConsoleApplication1 { class Program { static int val2 = 1; static intdoSomething(intval) { return val+ val2; } static void Main(string[] args) { Console.WriteLine( doSomething(1)); } } }
  • 9. Pattern Matching October 21, 2010 9 Kind of like a switch/case statement, but so much more!
  • 10. F#/C# Silverlight Example http://visualstudiogallery.msdn.microsoft.com/en-us/64f3d710-04c1-42d2-9e5d-4e20a19a7666 October 21, 2010 10
  • 11. F# Silverlight Example http://visualstudiogallery.msdn.microsoft.com/en-us/f0e9a557-3fd6-41d9-8518-c1735b382c73 October 21, 2010 11
  • 12. F#/C# ASP.NET MVC2 Example http://visualstudiogallery.msdn.microsoft.com/en-us/c36619e5-0d4a-4067-8ced-decd18e834c9 October 21, 2010 12
  • 14. What Wasn’t Covered? October 21, 2010 14 Lots of F# Features Other F# Web Frameworks Bistro Suave Frank and Frack
  • 15. More Information October 21, 2010 15 Books - http://msdn.microsoft.com/en-us/fsharp/gg262865.aspx F# MSDN - http://msdn.microsoft.com/en-us/fsharp/gg262865.aspx Blogs Twitter Ask – F# has the greatest community around
  • 16. Daniel MohlC# MVP and F# Insider October 21, 2010 16 dmohl@yahoo.com www.twitter.com/dmohl blog.danielmohl.com