37 lines
463 B
Text
37 lines
463 B
Text
snippet main
|
|
<<<<<< HEAD
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
cout << "Hello, World!" << endl;
|
|
|
|
return 0;
|
|
}
|
|
endsnippet
|
|
|
|
snippet oshh
|
|
#define OSH_H_IMPLEMENTATION
|
|
#include "osh.h"
|
|
|
|
using namespace osh;
|
|
|
|
int main() {
|
|
println("Hello, World!");
|
|
=======
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main() {
|
|
printf("Hello, World!\n");
|
|
|
|
return 0;
|
|
}
|
|
endsnippet
|
|
|
|
snippet fori
|
|
for (int $1 = $2; $1 < $3; $1++) {
|
|
$0
|
|
}
|
|
endsnippet
|