마크다운 테스트
Markdown test
Name | Age | Height |
---|---|---|
John | 25 | 178 |
Paul | 30 | 180 |
Cindy | 27 | 175 |
$ ./py -3 run.py
import math
x = 3.5
print('sqrt(%f) = %f', x, math.sqrt(x))
function add(x, y) {
return x + y;
}
console.log(add(3, 2));
#include <iostream>
int main() {
std::cout << "Hello, world!" << std::endl;
return 0;
}