Move History

Rooted by: Hello C#!
Fork Selected
  • Fundamentals
    Code
    (ns hello.core)
    
    (println "Hello Clojure")
  • Code
    • #include <iostream>
    • #include <string>
    • (ns hello.core)
    • int helloCplusplus(){
    • std::string str = "Hello, C++!";
    • std::cout << str << '\n';
    • return 0;
    • }
    • (println "Hello Clojure")
    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));
    • }
    • };