Log in with your MaiOtaku account.
Home Forum Anime Search Newest Help

Hello World Hello world ♥

jacktechno
I'd recommend Howl's Moving Castle, if we're talking about Studio Ghibli. It's my favorite of their films.
dandere_marie
Thanks everyone for all the warm welcoming!! ^ . ^
decathion
Yes I highly recommend castle In the sky I've seen it when I was a little kid with my sister ITS AMAZING!!
reprisal_1903
class HelloDandere { public HelloDandere tail; public void SayHello(){ Console.writeLine("Hello Dandere!"); } } public static void Program(){ CreateHelloDandere(new HelloDandere(), 10, new HelloDandere()); } public static HelloDandere CreateHelloDandere(HelloDandere node, int amount, HelloDandere current){ if(amount <= 0) return (node.tail = current); var n = new HelloDandere(); current.tail = n; return CreateHelloDandere(node,amount-1, current); } public static void printAllNodes(HelloDandere node){ node.SayHello(); if(node.tail == null) { return; } return printAllNodes(node.tail); } Just some recursive code, move along please.
erendel
Dec 08, 15 at 1:47pm
Hello there Ali! :O Welcome to MO! ^u^
Please login to post.