第一篇之我的 GitBook 文章

這裡應該是寫引言的吧。總之就用看看先試試它的能耐吧。這一段裡不能換行哦。

我很強,不要桃戰我

今天天氣不是很好又有颱風來了,看來要下連續幾天的雨了。 可以強制換行,這可以哦。

可編寫原始碼?

T-SQL

WITH TT AS (
-- 我是註解
SELECT * 
FROM YourTable A WITH(NOLOCK)
LEFT JOIN FooTable B WITH(NOLOCK)
WHERE A.foo = B.foo
GROUP BY A.bar
ORDER BY B.baz
) 
SELECT * FROM TT;

C#

using generics = System.Collections.Generic;

namespace AliasExample
{
    class TestClass
    {
        static void Main()
        {
            generics::Dictionary<string, int> dict = new generics::Dictionary<string, int>()
            {
                ["A"] = 1,
                ["B"] = 2,
                ["C"] = 3
            };

            foreach (string name in dict.Keys)
            {
                System.Console.WriteLine($"{name} {dict[name]}");
            }
            // Output:
            // A 1
            // B 2
            // C 3
        }
    }
}

JavaScript

function DataLister(props) {
    const {dataList} = props
    const [foo,setFoo] = useState({baz:`show me the ${money}.`})    
    // 我是註解
    console.log('DataLister', ...props)
    return (
       <ul>
            dataList.map((item,index) => (
                <li key={index}>{item}</li>
            )
        </ul>
    )
}

可以上附圖

圖片名稱之沒圖沒真象

可以上附件

哇!!!可以上附件耶~~

小結

可用。 未來也將使用。

Last updated