mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
18 lines
421 B
Text
18 lines
421 B
Text
template "Console application (no U++)" main;
|
|
|
|
select("C", "C++")
|
|
"Language" language = 1;
|
|
|
|
@@<:PACKAGE:><:?language == 0 :>.c<:.:><:?language == 1 :>.cpp<:.:>
|
|
<:?language == 0 :>#include <stdio.h><:.:><:?language == 1 :>#include <iostream><:.:>
|
|
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
return 0;
|
|
}
|
|
@@<:PACKAGE:>.upp
|
|
file
|
|
<:PACKAGE:><:?language == 0 :>.c<:.:><:?language == 1 :>.cpp<:.:>;
|
|
|
|
mainconfig
|
|
"" = "";
|