ObjFW  Check-in [31066af476]

Overview
Comment:README.md: Use new objfw-new syntax
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 31066af47664263c841326c6a83ebad1642ab0b5e6bbe13fb8c99173b6acb2dd
User & Date: js on 2022-08-07 21:00:13
Other Links: manifest | tags
Context
2022-08-07
21:10
Update buildsys check-in: 63fae0d8d2 user: js tags: trunk
21:00
README.md: Use new objfw-new syntax check-in: 31066af476 user: js tags: trunk
20:57
objfw-new: Use proper long options check-in: ceee745736 user: js tags: trunk
Changes

Modified README.md from [939967b8be] to [746ee62228].

307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
    $ ./configure --host=m68k-amigaos


<h1 id="first-app">Writing your first application with ObjFW</h1>

  To create your first, empty application, you can use `objfw-new`:

    $ objfw-new app MyFirstApp

  This creates a file `MyFirstApp.m`. The `-[applicationDidFinishLaunching]`
  method is called as soon as ObjFW finished all initialization. Use this as
  the entry point to your own code. For example, you could add the following
  line there to create a "Hello World":

    [OFStdOut writeLine: @"Hello World!"];







|







307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
    $ ./configure --host=m68k-amigaos


<h1 id="first-app">Writing your first application with ObjFW</h1>

  To create your first, empty application, you can use `objfw-new`:

    $ objfw-new --app MyFirstApp

  This creates a file `MyFirstApp.m`. The `-[applicationDidFinishLaunching]`
  method is called as soon as ObjFW finished all initialization. Use this as
  the entry point to your own code. For example, you could add the following
  line there to create a "Hello World":

    [OFStdOut writeLine: @"Hello World!"];