Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
プリメイクでは、同じことになるような構造 files { "**.h", "**.cpp" }がfiles = { "**.h", "**.cpp" }ありますか?
files { "**.h", "**.cpp" }
files = { "**.h", "**.cpp" }
いいえ。構成は次と同じです
files({"**.h", "**.cpp"})
つまり、関数呼び出しです。一般に、関数が単一のリテラル引数で呼び出される場合は、括弧を省略できます。
print "Hello world!"