Re: First working Win64 program!

2012-08-11 Thread Jordi Sayol
Al 12/08/12 06:18, En/na Walter Bright ha escrit:
> On 8/11/2012 8:29 PM, "拖狗散步" wrote:
>> Walter Bright They say you're an old man, I think your avatar is really so 
>> young?
> 
> Every night, I drink the blood of unborn children.
> 

Now I understand many many things... :-)
-- 
Jordi Sayol



Re: First working Win64 program!

2012-08-11 Thread Adam Wilson
On Sat, 11 Aug 2012 21:18:17 -0700, Walter Bright  
 wrote:



On 8/11/2012 8:29 PM, "拖狗散步" wrote:
Walter Bright They say you're an old man, I think your avatar is really  
so young?


Every night, I drink the blood of unborn children.




Actively working at scaring them off now, ehh? ;-)

--
Adam Wilson
IRC: LightBender
Project Coordinator
The Horizon Project
http://www.thehorizonproject.org/


Re: First working Win64 program!

2012-08-11 Thread Walter Bright

On 8/11/2012 8:29 PM, "拖狗散步" wrote:

Walter Bright They say you're an old man, I think your avatar is really so 
young?


Every night, I drink the blood of unborn children.




Re: First working Win64 program!

2012-08-11 Thread 拖狗散步

On Sunday, 12 August 2012 at 01:52:08 UTC, Walter Bright wrote:

On 8/11/2012 6:28 PM, Adam Wilson wrote:

This is a glorious day indeed!



I see everyone likes this direction we're going. Great!


Walter Bright They say you're an old man, I think your avatar is 
really so young?





Re: First working Win64 program!

2012-08-11 Thread Walter Bright

On 8/11/2012 6:28 PM, Adam Wilson wrote:

This is a glorious day indeed!



I see everyone likes this direction we're going. Great!




Re: First working Win64 program!

2012-08-11 Thread Adam Wilson
On Sat, 11 Aug 2012 01:16:37 -0700, Walter Bright  
 wrote:


No, it ain't much, some of it is jury rigged, and there's a heluva lot  
more work to do. But we've got liftoff!


-
import core.stdc.stdio;

extern (C) int main()
{
 puts("hello world\n");
 return 0;
}
-

   dmd -c -m64 hello.d
   cl hello.obj
   hello

hello world!


This is a glorious day indeed!

--
Adam Wilson
IRC: LightBender
Project Coordinator
The Horizon Project
http://www.thehorizonproject.org/


Re: First working Win64 program!

2012-08-11 Thread nazriel

On Saturday, 11 August 2012 at 08:17:13 UTC, Walter Bright wrote:
No, it ain't much, some of it is jury rigged, and there's a 
heluva lot more work to do. But we've got liftoff!


-
import core.stdc.stdio;

extern (C) int main()
{
puts("hello world\n");
return 0;
}
-

  dmd -c -m64 hello.d
  cl hello.obj
  hello

hello world!


Fuck yea!

Great news.
Good job Walter!



Re: First working Win64 program!

2012-08-11 Thread Jacob Carlborg

On 2012-08-11 10:16, Walter Bright wrote:

No, it ain't much, some of it is jury rigged, and there's a heluva lot
more work to do. But we've got liftoff!

-
import core.stdc.stdio;

extern (C) int main()
{
 puts("hello world\n");
 return 0;
}
-

   dmd -c -m64 hello.d
   cl hello.obj
   hello

hello world!


That's great news.

--
/Jacob Carlborg


Re: Mono-D v0.4.1 - Completion improvement

2012-08-11 Thread F i L

On Friday, 10 August 2012 at 18:34:14 UTC, alex wrote:

Hi everyone,

Just want to announce the release of a new Mono-D version that 
contains some code completion improvements.
I was occupied with developing the expression evaluation all 
along the GSoC 2012, but unfortunately the current results 
can't really be seen - since couple of things are done deep 
down in the parser library, independently from other completion 
features.
Anyway, the project (including me, lol) is still alive, and 
here are some updated & fixed completion features :)


Changelog, project blog: http://mono-d.alexanderbothe.com
Issues: https://github.com/aBothe/Mono-d/issues


Great work, Alex! MonoDevelop 3.0.3 finally just came out on the 
official Arch Linux repos in tangent with your MonoD update. Good 
day to be a D programmer :D


Re: First working Win64 program!

2012-08-11 Thread F i L

On Saturday, 11 August 2012 at 08:17:13 UTC, Walter Bright wrote:
No, it ain't much, some of it is jury rigged, and there's a 
heluva lot more work to do. But we've got liftoff!


-
import core.stdc.stdio;

extern (C) int main()
{
puts("hello world\n");
return 0;
}
-

  dmd -c -m64 hello.d
  cl hello.obj
  hello

hello world!



Awesome!


Re: First working Win64 program!

2012-08-11 Thread Andrei Alexandrescu

On 8/11/12 4:16 AM, Walter Bright wrote:

No, it ain't much, some of it is jury rigged, and there's a heluva lot
more work to do. But we've got liftoff!

-
import core.stdc.stdio;

extern (C) int main()
{
puts("hello world\n");
return 0;
}
-

dmd -c -m64 hello.d
cl hello.obj
hello

hello world!


Cool, but the correct implementation should be

-
import core.stdc.stdio;

extern (C) int main()
{
return puts("hello world\n") < 0;
}
-

:o)


Andrei


Re: Mono-D v0.4.1 - Completion improvement

2012-08-11 Thread Bernard Helyer

Nice one. :D

I'll have to try it out when I have time.


Re: First working Win64 program!

2012-08-11 Thread Bernard Helyer

On Saturday, 11 August 2012 at 14:04:39 UTC, 拖狗散步 wrote:
On Saturday, 11 August 2012 at 08:17:13 UTC, Walter Bright 
wrote:
No, it ain't much, some of it is jury rigged, and there's a 
heluva lot more work to do. But we've got liftoff!


-
import core.stdc.stdio;

extern (C) int main()
{
   puts("hello world\n");
   return 0;
}
-

 dmd -c -m64 hello.d
 cl hello.obj
 hello

hello world!


Congratulations! :D




Congratulations!
But the possibility of acceding to generate so files?


GDC already can. The .so thing is more of a druntime issue
than it is a compiler issue, AFAIK.






Re: First working Win64 program!

2012-08-11 Thread 拖狗散步

On Saturday, 11 August 2012 at 08:17:13 UTC, Walter Bright wrote:
No, it ain't much, some of it is jury rigged, and there's a 
heluva lot more work to do. But we've got liftoff!


-
import core.stdc.stdio;

extern (C) int main()
{
puts("hello world\n");
return 0;
}
-

  dmd -c -m64 hello.d
  cl hello.obj
  hello

hello world!


Congratulations!
But the possibility of acceding to generate so files?




Re: First working Win64 program!

2012-08-11 Thread Paulo Pinto

On Saturday, 11 August 2012 at 08:17:13 UTC, Walter Bright wrote:
No, it ain't much, some of it is jury rigged, and there's a 
heluva lot more work to do. But we've got liftoff!


-
import core.stdc.stdio;

extern (C) int main()
{
puts("hello world\n");
return 0;
}
-

  dmd -c -m64 hello.d
  cl hello.obj
  hello

hello world!


HURRAY!

Congratulations.

--
Paulo


First working Win64 program!

2012-08-11 Thread Walter Bright
No, it ain't much, some of it is jury rigged, and there's a heluva lot more work 
to do. But we've got liftoff!


-
import core.stdc.stdio;

extern (C) int main()
{
puts("hello world\n");
return 0;
}
-

  dmd -c -m64 hello.d
  cl hello.obj
  hello

hello world!


Re: First working Win64 program!

2012-08-11 Thread Michael


  dmd -c -m64 hello.d
  cl hello.obj
  hello

hello world!


Yeehaa! Best news of the last years and even two news that is 
:-)

+1
Cool1



Re: First working Win64 program!

2012-08-11 Thread Sönke Ludwig

Am 11.08.2012 10:16, schrieb Walter Bright:

No, it ain't much, some of it is jury rigged, and there's a heluva lot
more work to do. But we've got liftoff!

-
import core.stdc.stdio;

extern (C) int main()
{
 puts("hello world\n");
 return 0;
}
-

   dmd -c -m64 hello.d
   cl hello.obj
   hello

hello world!


Yeehaa! Best news of the last years and even two news that is :-)



Re: First working Win64 program!

2012-08-11 Thread kraybourne

On 8/11/12 10:16 , Walter Bright wrote:

No, it ain't much, some of it is jury rigged, and there's a heluva lot
more work to do. But we've got liftoff!

-
import core.stdc.stdio;

extern (C) int main()
{
puts("hello world\n");
return 0;
}
-

dmd -c -m64 hello.d
cl hello.obj
hello

hello world!


\o/ sweet!!!