Move History

Rooted by: hello world
Fork Selected
  • Code
    def hello
      "world"
    end
    Test Cases
    describe "Solution" do
      it "returns with 'world'" do
        expect(hello()).to eq("world")
      end
    end
  • Code
    • function hello() {
    • return "world";
    • }
    • def hello
    • "world"
    • end
    Test Cases
    • describe("Solution", function(){
    • it("should test for something", function(){
    • Test.assertEquals(hello(), "world");
    • });
    • });
    • describe "Solution" do
    • it "returns with 'world'" do
    • expect(hello()).to eq("world")
    • end
    • end