Search

October 16, 2007
Issues »
...If the module aaa.bbb.ccc; is in file ccc.d in the current directory...
October 10, 2007
Issues »
...d
module testb;
import testa;

TestEnum te;
CCC ccc;
SSS sss;




Compile the testA.d...
October 03, 2007
Announce »
...They could use query like '/AAA/BBB/CCC' to access third level child and //BBB...
September 19, 2007
General »
...If the module aaa.bbb.ccc; is in file ccc.d in the current directory...
May 27, 2007
General »
...there, try these:

//variables in a higher scope
A aaa;
char[] bbb;
int ccc;

Regan
May 27, 2007
General »
...int *ccc;

void foo(A aa, char[] bb, int cc)
{
  aaa = aa;
  bbb = bb;
  ccc...
March 16, 2007
Learn »
...dup;
  char[] bb = "bbb".dup;
  char[] cc = "ccc".dup;
  funcTwo( a,b,c)
  // Now aa...
January 18, 2007
Learn »
...of the grammar
{
 private void a() { }
}

---

module ccc

void main() {
 auto a = new C();
 a...
July 12, 2006
General »
...return 2; }

 // ---- ccc.d ----
 private int foo() { return 3; }

 // ---- ddd.d ----
 private import ccc;
 private...
July 10, 2006
General »
...bbb()
 {
  aaa.X = 1;
 }

 -- ccc.d ---
 import bbb;
 void func_ccc()
 {
  aaa.X = 5; // Illegal...
1 2 3 4 5 6 7 8
Next ›   Last »