Serving the Quantitative Finance Community

  • 1
  • 4
  • 5
  • 6
  • 7
  • 8
  • 11
 
User avatar
Alan
Posts: 2957
Joined: December 19th, 2001, 4:01 am
Location: California
Contact:

Re: Hello World in all Languages, post here

August 24th, 2018, 3:41 am

Hello world
Image
 
User avatar
Cuchulainn
Topic Author
Posts: 20203
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Re: Hello World in all Languages, post here

August 24th, 2018, 1:50 pm

Image
 
User avatar
Cuchulainn
Topic Author
Posts: 20203
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Re: Hello World in all Languages, post here

August 24th, 2018, 1:55 pm

Fortunately, Hollerith had an update (btw am I the only one here who used punch cards?)
 
User avatar
ppauper
Posts: 11729
Joined: November 15th, 2001, 1:29 pm

Re: Hello World in all Languages, post here

August 29th, 2018, 5:13 am

his middle name is marie?
 
User avatar
Cuchulainn
Topic Author
Posts: 20203
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Re: Hello World in all Languages, post here

February 11th, 2020, 8:43 pm

Julia
println("Hello, World!")
 
User avatar
Paul
Posts: 6598
Joined: July 20th, 2001, 3:28 pm

Re: Hello World in all Languages, post here

March 27th, 2020, 9:05 pm

I remember when "Hello, world" was meant to be mildly amusing.
 
User avatar
Cuchulainn
Topic Author
Posts: 20203
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Re: Hello World in all Languages, post here

March 28th, 2020, 12:09 pm

I remember when "Hello, world" was meant to be mildly amusing.
It is handed down to the new generation of programmers. 
 
User avatar
ISayMoo
Posts: 2332
Joined: September 30th, 2015, 8:30 pm

Re: Hello World in all Languages, post here

June 7th, 2020, 9:47 pm

In Go:
package main

import "fmt"

func main() {
    fmt.Println("Hello, world.")
}
 
User avatar
Cuchulainn
Topic Author
Posts: 20203
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Re: Hello World in all Languages, post here

June 8th, 2020, 7:02 am

GO = C + ?
 
User avatar
ISayMoo
Posts: 2332
Joined: September 30th, 2015, 8:30 pm

Re: Hello World in all Languages, post here

June 8th, 2020, 6:11 pm

Sort of.
 
User avatar
Cuchulainn
Topic Author
Posts: 20203
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Re: Hello World in all Languages, post here

June 8th, 2020, 7:05 pm

Sort of.
Or GO = C  + <libraries_that_C_not_have>?
 
User avatar
katastrofa
Posts: 7430
Joined: August 16th, 2007, 5:36 am
Location: Alpha Centauri

Re: Hello World in all Languages, post here

June 8th, 2020, 10:44 pm

ANSI C + Java functionalities?
 
User avatar
Cuchulainn
Topic Author
Posts: 20203
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Re: Hello World in all Languages, post here

June 9th, 2020, 9:32 am

GO, a language for those with a dislike of C++.
 
User avatar
Cuchulainn
Topic Author
Posts: 20203
Joined: July 16th, 2004, 7:38 am
Location: 20, 000

Re: Hello World in all Languages, post here

June 10th, 2020, 7:01 am

ANSI C + Java functionalities?
A language without generics (~ templates) is like a ham sandwich without mustard.
 
User avatar
ISayMoo
Posts: 2332
Joined: September 30th, 2015, 8:30 pm

Re: Hello World in all Languages, post here

June 10th, 2020, 10:12 pm

They will add them, I think. I wrote a bit of Go code for this project and so far haven't missed generics terribly. But for some use cases they are extremely useful.