Changeset 164
- Timestamp:
- 05/02/07 20:35:32 (2 years ago)
- Files:
-
- trunk/mdcl.brf (modified) (1 diff)
- trunk/mdcl.zip (modified) (previous)
- trunk/minid/types.d (modified) (1 diff)
- trunk/samples/simple.md (modified) (1 diff)
- trunk/test.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/mdcl.brf
r163 r164 4 4 -O 5 5 -inline 6 -g7 6 -op trunk/minid/types.d
r163 r164 2014 2014 else 2015 2015 { 2016 for(Slot* slot = &mSlots[h]; slot !is null; slot = slot.next) 2017 { 2018 if(slot.key == key) 2019 { 2020 slot.value = value; 2021 return; 2022 } 2023 } 2024 2016 2025 if(mColSlot == mSlots.length) 2017 2026 grow(); trunk/samples/simple.md
r163 r164 20 20 local d = Derived(); 21 21 d.fork(); 22 23 writefln(); 22 24 23 25 // Coroutines and coroutine iteration. trunk/test.d
r163 r164 19 19 MDFileLoader().addPath(`benchmark`); 20 20 21 MDGlobalState().importModule(" fasta");21 MDGlobalState().importModule("simple"); 22 22 } 23 23 catch(MDException e)
