Happy !

LynHeadley / FlashLearn

Project infos

License MIT
Tags flash, instance, system, cards, learning, variables, superclass, smalltalk
Creation date 2014-01-12
Website

Monticello registration

About FlashLearn

Some code to generate flash cards to help you learn the superclass of every class in a package, and the instance variables of each class in the package. Generates text files for Flash cards compatible with Anki flash card viewer program.

Example usage:

example " LHLearnPackage example "

| learner |
learner := self new.
learner
    include: 'Seaside'; exclude: 'Tests'; exclude: 'Development';
    exportToFileNamed: '..\..\Seaside.txt'.
learner := self new.
learner
    include: 'Pier'; exclude: 'Tests';
    exclude: 'Book';
    exportToFileNamed: '..\..\Pier.txt'