SmalltalkCodeGeneratorTool.st
changeset 11637 b7ab3efa491e
parent 11523 d0f296d32d73
child 11640 9308a03c98a2
equal deleted inserted replaced
11636:2a26799eb21b 11637:b7ab3efa491e
  2252     helpOption ifTrue:[ 
  2252     helpOption ifTrue:[ 
  2253         self usage. 
  2253         self usage. 
  2254     ] ifFalse:[
  2254     ] ifFalse:[
  2255         self realMain:argv.
  2255         self realMain:argv.
  2256     ].
  2256     ].
  2257     Smalltalk exit:0. 
  2257     "/ do not exit here; caller will go into event loop here
  2258 '.
  2258 '.
  2259 
  2259 
  2260     "Created: / 19-08-2011 / 02:18:49 / cg"
  2260     "Created: / 19-08-2011 / 02:18:49 / cg"
  2261 !
  2261 !
  2262 
  2262 
  2273 
  2273 
  2274     ].
  2274     ].
  2275 
  2275 
  2276     ^
  2276     ^
  2277 'realMain:argsToEcho
  2277 'realMain:argsToEcho
  2278     "just a dummy as example - does nothing but echo its arguments"
  2278     "just a dummy example - does nothing but echo its arguments"
  2279 
  2279 
  2280     Stdout nextPutLine:''Hello World''.
  2280     Stdout nextPutLine:''Hello World''.
  2281     Stdout nextPutLine:(argsToEcho asStringWith:Character space)
  2281     Stdout nextPutLine:(argsToEcho asStringWith:Character space)
  2282 '.
  2282 '.
  2283 
  2283 
  2491 ! !
  2491 ! !
  2492 
  2492 
  2493 !SmalltalkCodeGeneratorTool class methodsFor:'documentation'!
  2493 !SmalltalkCodeGeneratorTool class methodsFor:'documentation'!
  2494 
  2494 
  2495 version
  2495 version
  2496     ^ '$Header: /cvs/stx/stx/libtool/SmalltalkCodeGeneratorTool.st,v 1.13 2012-05-22 16:33:26 stefan Exp $'
  2496     ^ '$Header: /cvs/stx/stx/libtool/SmalltalkCodeGeneratorTool.st,v 1.14 2012-07-20 16:55:09 cg Exp $'
  2497 !
  2497 !
  2498 
  2498 
  2499 version_CVS
  2499 version_CVS
  2500     ^ '$Header: /cvs/stx/stx/libtool/SmalltalkCodeGeneratorTool.st,v 1.13 2012-05-22 16:33:26 stefan Exp $'
  2500     ^ '$Header: /cvs/stx/stx/libtool/SmalltalkCodeGeneratorTool.st,v 1.14 2012-07-20 16:55:09 cg Exp $'
  2501 !
  2501 !
  2502 
  2502 
  2503 version_SVN
  2503 version_SVN
  2504     ^ '§Id§'
  2504     ^ '§Id§'
  2505 ! !
  2505 ! !