1 / 12

REBOL

REBOL. Was ist REBOL. frei verfügbar plattformübergreifend highly reflective flexibel kompakt interpretiert. Versionen. /core (/base) /view (/face) /command (/pro) /encap /sdk. Teil 1 - Einführung. Values. direkt interpretiert 52 Datentypen 12-Dec-2002 "Programmieren"

Download Presentation

REBOL

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. REBOL

  2. Was ist REBOL • frei verfügbar • plattformübergreifend • highly reflective • flexibel • kompakt • interpretiert

  3. Versionen • /core (/base) • /view (/face) • /command (/pro) • /encap • /sdk

  4. Teil 1 - Einführung

  5. Values • direkt interpretiert • 52 Datentypen • 12-Dec-2002 • "Programmieren" • 64.82.101.70 • www.rebol.com • $249.50 • ...

  6. Words • indirekt interpretiert („Variable“) • keine Datentypen • word var • get-word :var • set-word var: • lit-word ‘var

  7. Blöcke • nicht interpretiert • Zusammenfassung beliebiger Elemente mit Reihenfolge • [ red green blue ] • [ 15:50 42 "Hans" no [nja, is eh] (2 / 0) ] • [print ["Hello" ask "name? "] ] • either random true [ print „YES!“ ][none]

  8. Sonderzeichen ^/ newline ^- tab ^" " ^} } ^(xx) ASCII xx (hex)

  9. Teil 2 - Grundlagen

  10. Arbeiten mit der Konsole • direkt • copy/paste • Editor + do %file.r • help • source • probe

  11. Series! • Zuweisungen per Referenz (!)  copy str • pick • insert, remove, change • head, next, back, tail, skip • sort, find, length?, index?

  12. Function! • func [ spec-block ][ code-block ] • „funktionsbeschreibung“ • arg [type!] „beschreibung“ • /refinement „beschreibung“ • r-arg [typ!] „beschreibung“

More Related