8 lines
130 B
C++
8 lines
130 B
C++
|
#include <cstdio>
|
||
|
#include "stdafx.h"
|
||
|
|
||
|
int main(int argc,char *argv[]){
|
||
|
printf("hello vscode\n");
|
||
|
print();
|
||
|
return 0;
|
||
|
}
|