Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 213 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 213 Bytes

Init to new form

Information

def hello_world
	puts 'Hello World!'
end
#include <iostream>
void foo() {
	std::cout << "foo()" << std::endl;
}

int main(void) {
	foo();
	return 0;
}