Move History

Rooted by: Hello C#!
Fork Selected
  • Fundamentals
    Code
    package main
    
    import (
    	"fmt"
    )
    
    func main() {
    	fmt.Println("Hello Golang")
    }
  • Code
    • #include <iostream>
    • #include <string>
    • package main
    • int helloCplusplus(){
    • std::string str = "Hello, C++!";
    • std::cout << str << '\n';
    • return 0;
    • import (
    • "fmt"
    • )
    • func main() {
    • fmt.Println("Hello Golang")
    • }
    Test Cases
    • // TODO: TDD development by writing your own tests as you solve the kata
    • Describe(Group_C_plus_plus)
    • {
    • It(test_proper_exit)
    • {
    • Assert::That(helloCplusplus(), Equals(0));
    • }
    • };