update
This commit is contained in:
parent
0a097a142e
commit
3ee6d3ba3d
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
|||||||
/build
|
/build
|
||||||
/.vscode
|
/.vscode
|
||||||
/.xmake
|
/.xmake
|
||||||
|
/test.asm
|
||||||
# ---> C++
|
# ---> C++
|
||||||
# Prerequisites
|
# Prerequisites
|
||||||
*.d
|
*.d
|
||||||
|
21
test.cpp
21
test.cpp
@ -1,10 +1,21 @@
|
|||||||
|
//using C++17
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
#include<iostream>
|
#include<iostream>
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
|
|
||||||
|
template<typename ...Args>
|
||||||
|
void println(const Args& ...args){
|
||||||
|
((std::cout<<args<<" "),...);
|
||||||
|
std::cout<<"\n";
|
||||||
|
}
|
||||||
|
|
||||||
int main(){
|
int main(){
|
||||||
unsigned int a{};
|
println("Hello,World!","-by","Zengtudor");
|
||||||
for(;;){a++;}
|
println("End");
|
||||||
cout<<a<<endl;
|
println(std::pow(2,10));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Hello,World! -by Zengtudor
|
||||||
|
End
|
||||||
|
*/
|
Loading…
Reference in New Issue
Block a user