我已使用以下链接作为参考,但仍然无法让我的代码打印 HTML
<title>This is the title</title>
http://lefthandedgoat.github.io/canopy/actions.html
以下 3 行代码没有打印出我所期望的(我在最后尝试使用 C# 作为另一种方法)。我所期望的,是从我的 HTML 文件中提取 TITLE 并将其打印到控制台窗口。我对此还没有“目的”,但我只是在测试文档中可用的所有操作。
let theTitle = title()
printfn "Page title is: %s" title()
System.Console.WriteLine("Print the title here: {0}", theTitle);