learnxinyminutes-docs/racket.html.markdown

465 lines
12 KiB
Markdown
Raw Normal View History

2013-07-11 15:45:38 +04:00
---
language: racket
author: th3rac25
2013-07-11 15:45:38 +04:00
---
Racket is a general purpose, multi-paradigm programming language in the Lisp/Scheme family.
Feedback is appreciated! You can reach me at [@th3rac25](http://twitter.com/th3rac25) or th3rac25 [at] [google's email service]
2013-07-11 15:45:38 +04:00
```racket
#lang racket ; defines the language we are using
2013-07-15 06:44:48 +04:00
;;; Comments
2013-07-11 15:45:38 +04:00
; Single line comments start with a semicolon
2013-07-15 06:44:48 +04:00
#| Block comments
can span multiple lines and...
#|
they can be nested !
|#
2013-07-11 15:45:38 +04:00
|#
2013-07-15 06:44:48 +04:00
; S-expression comments discard the following expression
#; "this expression will be discarded" "2nd expression" ; => "2nd expression"
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 1. Primitive Datatypes and Operators
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-14 15:59:16 +04:00
;;; Numbers
2013-07-13 16:37:49 +04:00
9999999999999999999999 ; integers
3.14 ; reals
2013-07-11 15:45:38 +04:00
6.02e+23
1/2 ; rationals
1+2i ; complex numbers
2013-07-11 15:45:38 +04:00
2013-07-13 16:37:49 +04:00
; Function application is written (f x y z ...)
; where f is a function and x, y, z, ... are operands
2013-07-14 15:59:16 +04:00
; If you want to create a literal list of data, use ' to stop it from
; being evaluated
'(+ 1 2) ; => (+ 1 2)
; Now, some arithmetic operations
2013-07-11 15:45:38 +04:00
(+ 1 1) ; => 2
(- 8 1) ; => 7
(* 10 2) ; => 20
(quotient 5 2) ; => 2
(remainder 5 2) ; => 1
(/ 35 5) ; => 7
(/ 1 3) ; => 1/3
(exact->inexact 1/3) ; => 0.3333333333333333
(+ 1+2i 2-3i) ; => 3-1i
2013-07-14 15:59:16 +04:00
;;; Booleans
2013-07-11 15:45:38 +04:00
#t ; for true
2013-07-15 06:44:48 +04:00
#f ; for false -- any value other than #f is true
2013-07-11 15:45:38 +04:00
(not #t) ; => #f
2013-07-15 06:44:48 +04:00
(and 0 #f (error "doesn't get here")) ; => #f
(or #f 0 (error "doesn't get here")) ; => 0
2013-07-11 15:45:38 +04:00
2013-07-14 15:59:16 +04:00
;;; Characters
2013-07-11 15:45:38 +04:00
#\A ; => #\A
#\λ ; => #\λ
#\u03BB ; => #\λ
2013-07-14 15:59:16 +04:00
;;; Strings are fixed-length array of characters.
2013-07-11 15:45:38 +04:00
"Hello, world!"
"Benjamin \"Bugsy\" Siegel" ; backslash is an escaping character
"λx:(μα.α→α).xx" ; any Unicode character can appear in a string constant
; Strings can be added too!
(string-append "Hello " "world!") ; => "Hello world!"
; A string can be treated like a list of characters
(string-ref "Apple" 0) ; => #\A
; format can be used to format strings:
(format "~a can be ~a" "strings" "formatted")
; Printing is pretty easy
(printf "I'm Racket. Nice to meet you!\n")
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 2. Variables
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; You can create a variable using define
2013-07-14 15:59:16 +04:00
; a variable name can use any character except: ()[]{}",'`;#|\
2013-07-11 15:45:38 +04:00
(define some-var 5)
some-var ; => 5
2013-07-15 06:44:48 +04:00
; You can also use unicode characters
(define ⊆ subset?)
(⊆ (set 3 2) (set 1 2 3)); => #t
2013-07-11 15:45:38 +04:00
; Accessing a previously unassigned variable is an exception
;x ; => x: undefined ...
; Local binding: me is bound to "Bob" only within (let ...)
(let ([me "Bob"])
"Alice"
me) ; => "Bob"
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-14 15:59:16 +04:00
;; 3. Structs and Collections
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-14 15:59:16 +04:00
; Structs
(struct dog (name breed age))
(define my-pet
(dog "lassie" "collie" 5))
my-pet ; => #<dog>
(dog? my-pet) ; => #t
(dog-name my-pet) ; => "lassie"
2013-07-15 06:44:48 +04:00
;;; Pairs (immutable)
2013-07-14 15:59:16 +04:00
; "cons" constructs pairs, "car" and "cdr" extract the first
; and second elements
(cons 1 2) ; => '(1 . 2)
(car (cons 1 2)) ; => 1
(cdr (cons 1 2)) ; => 2
2013-07-15 06:44:48 +04:00
;;; Lists
2013-07-13 16:37:49 +04:00
2013-07-15 06:44:48 +04:00
; Lists are linked-list data structures
(list 1 2 3) ; => '(1 2 3)
2013-07-11 15:45:38 +04:00
2013-07-13 16:37:49 +04:00
; Use "cons" to add an item to the beginning of a list
2013-07-11 15:45:38 +04:00
(cons 4 '(1 2 3)) ; => (4 1 2 3)
2013-07-13 16:37:49 +04:00
; Use "append" to add lists together
2013-07-11 15:45:38 +04:00
(append '(1 2) '(3 4)) ; => (1 2 3 4)
2013-07-15 06:44:48 +04:00
;;; Vectors
; Vectors are fixed-length arrays
#(1 2 3) ; => '#(1 2 3)
2013-07-11 15:45:38 +04:00
2013-07-15 06:44:48 +04:00
; Use "vector-append" to add vectors together
(vector-append #(1 2 3) #(4 5 6)) ; => #(1 2 3 4 5 6)
2013-07-11 15:45:38 +04:00
2013-07-13 16:37:49 +04:00
;;; Sets
; create a set from a list
(list->set '(1 2 3 1 2 3 3 2 1 3 2 1)) ; => (set 1 2 3)
; Add a member with "set-add"
(set-add (set 1 2 3) 4); => (set 1 2 3 4)
; Remove one with "set-remove"
(set-remove (set 1 2 3) 1) ; => (set 2 3)
; Test for existence with "set-member?"
(set-member? (set 1 2 3) 1) ; => #t
(set-member? (set 1 2 3) 4) ; => #f
;;; Hashes
2013-07-13 16:37:49 +04:00
; Create an immutable hash table (There are also mutables ones)
(define m (hash 'a 1 'b 2 'c 3))
2013-07-11 15:45:38 +04:00
2013-07-13 16:37:49 +04:00
; Retrieve a value
(hash-ref m 'a) ; => 1
2013-07-11 15:45:38 +04:00
2013-07-13 16:37:49 +04:00
; Retrieving a non-present value is an exception
; (hash-ref m 'd) => no value found
; You can provide a default value for missing keys
(hash-ref m 'd 0) ; => 0
; Use "hash-set" to extend a hash table
(define m2 (hash-set m 'd 4))
m2 ; => '#hash((b . 2) (a . 1) (d . 4) (c . 3))
; Remember, these hashes are immutable!
m ; => '#hash((b . 2) (a . 1) (c . 3))
; Use "hash-remove" to remove keys
(hash-remove m 'a) ; => '#hash((b . 2) (c . 3))
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 3. Functions
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-14 15:59:16 +04:00
; Use lambda to create new functions.
; A function always returns its last statement.
2013-07-11 15:45:38 +04:00
(lambda () "Hello World") ; => #<procedure>
; (You need extra parens to call it)
((lambda () "Hello World")) ; => "Hello World"
; Assign a function to a var
(define hello-world (lambda () "Hello World"))
(hello-world) ; => "Hello World"
; You can shorten this to:
2013-07-11 16:01:33 +04:00
(define (hello-world2) "Hello World")
2013-07-11 15:45:38 +04:00
; The () is the list of arguments for the function.
(define hello
(lambda (name)
(string-append "Hello " name)))
(hello "Steve") ; => "Hello Steve"
; You can have multi-variadic functions, too
(define hello2
(case-lambda
[() "Hello World"]
[(name) (string-append "Hello " name)]))
(hello2 "Jake") ; => "Hello Jake"
(hello2) ; => "Hello World"
; Functions can pack extra arguments up in a list
(define (count-args . args)
(format "You passed ~a args: ~a" (length args) args))
(count-args 1 2 3) ; => "You passed 3 args: (1 2 3)"
; You can mix regular and packed arguments
(define (hello-count name . args)
(format "Hello ~a, you passed ~a extra args" name (length args)))
(hello-count "Finn" 1 2 3)
; => "Hello Finn, you passed 3 extra args"
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-15 06:44:48 +04:00
;; 4. Equality
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; for numbers use "="
(= 3 3.0) ; => #t
(= 2 1) ; => #f
; for object identity use "eq?"
(eq? 3 3) ; => #t
(eq? 3 3.0) ; => #f
(eq? (list 3) (list 3)) ; => #f
; for collections use "equal?"
(equal? (list 'a 'b) (list 'a 'b)) ; => #t
(equal? (list 'a 'b) (list 'b 'a)) ; => #f
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 5. Control Flow
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-13 16:37:49 +04:00
2013-07-14 15:59:16 +04:00
;;; Conditionals
(if #t ; test expression
"this is true" ; then expression
"this is false" ; else expression
) ; => "this is true"
; In conditionals, all non-#f values are treated as true
(member "Groucho" '("Harpo" "Groucho" "Zeppo")) ; => '("Groucho" "Zeppo")
(if (member "Groucho" '("Harpo" "Groucho" "Zeppo"))
'yep
'nope) ; => 'yep
2013-07-13 16:37:49 +04:00
; "cond" chains a series of tests to select a result
(cond
[(> 2 2) (error "wrong!")]
[(< 2 2) (error "wrong again!")]
[else 'ok]) ; => 'ok
2013-07-11 15:45:38 +04:00
2013-07-14 15:59:16 +04:00
;;; Pattern Matching
(define (fizzbuzz? n)
(match (list (remainder n 3) (remainder n 5))
[(list 0 0) 'fizzbuzz]
[(list 0 _) 'fizz]
[(list _ 0) 'buzz]
[_ #f]))
(fizzbuzz? 15) ; => 'fizzbuzz
(fizzbuzz? 37) ; => #f
;;; Loops
2013-07-15 06:44:48 +04:00
; looping can be done through recursion
2013-07-14 15:59:16 +04:00
(define (loop i)
(when (< i 10)
(printf "i:~a~n" i)
(loop (add1 i))))
(loop 5) ; => i:5 i:6 ...
2013-07-15 06:44:48 +04:00
; similarly, with a named let
2013-07-14 15:59:16 +04:00
(let loop ((i 0))
(when (< i 10)
(printf "i:~a~n" i)
(loop (add1 i)))) ; => i:0 i:1 ...
2013-07-15 06:44:48 +04:00
;;; Comprehensions
(for/list ([i '(1 2 3)])
(add1 i)) ; => '(2 3 4)
(for/list ([i '(1 2 3)] #:when (even? i))
i) ; => '(2)
(for/hash ([i '(1 2 3)])
(values i (number->string i))) ; => '#hash((1 . "1") (2 . "2") (3 . "3"))
; To combine iteration results, use "for/fold"
(for/fold ([sum 0]) ([i '(1 2 3 4)])
(+ sum i)) ; => 10
2013-07-14 15:59:16 +04:00
;;; Sequences
; "for" allows iteration over sequences:
; lists, vectors, strings, sets, hash tables, etc...
(for ([i (in-list '(l i s t))])
(displayln i))
(for ([i (in-vector #(v e c t o r))])
(displayln i))
(for ([i (in-string "string")])
(displayln i))
(for ([i (in-set (set 'x 'y 'z))])
(displayln i))
(for ([(k v) (in-hash (hash 'a 1 'b 2 'c 3 ))])
(printf "key:~a value:~a ~n" k v))
;;; Exceptions
2013-07-13 16:37:49 +04:00
; To catch an exception, use the "with-handlers" form
; To throw an exception use "raise"
(with-handlers
([(lambda (v) (equal? v "infinity"))
(lambda (exn) +inf.0)])
(raise "infinity"))
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-15 06:44:48 +04:00
;; 6. Mutation
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Use set! to assign a new value to an existing variable
(define n 5)
(set! n 6)
n ; => 6
; Many Racket datatypes can be immutable or mutable
; (Pairs, Lists, Strings, Vectors, Hash Tables, etc...)
; Use "vector" to create a mutable vector
(define vec (vector 2 2 3 4))
; Use vector-set! to update a slot
(vector-set! vec 0 1)
vec ; => #(1 2 3 4)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 7. Modules
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-14 15:59:16 +04:00
; Modules let you organize code into multiple files and reusable libraries
(module cake racket/base ; define a new module 'cake' based on racket/base
2013-07-14 15:59:16 +04:00
(provide print-cake) ; function exported by the module
(define (print-cake n)
(show " ~a " n #\.)
(show " .-~a-. " n #\|)
(show " | ~a | " n #\space)
(show "---~a---" n #\-))
(define (show fmt n ch) ;; internal function
(printf fmt (make-string n ch))
(newline)))
2013-07-14 15:59:16 +04:00
; Use "require" to import all functions from the module
2013-07-13 16:37:49 +04:00
(require 'cake)
(print-cake 3)
2013-07-13 16:37:49 +04:00
;(show "~a" 1 #\A) ; => error, "show" was not exported
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-15 06:44:48 +04:00
;; 8. Classes and Objects
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-13 16:37:49 +04:00
; Create a class fish%
(define fish%
(class object%
(init size) ; initialization argument
(super-new) ; superclass initialization
2013-07-15 06:44:48 +04:00
; Field
(define current-size size)
2013-07-13 16:37:49 +04:00
; Public methods
2013-07-15 06:44:48 +04:00
(define/public (get-size) current-size)
(define/public (grow amt) (set! current-size (+ amt current-size)))
(define/public (eat other-fish) (grow (send other-fish get-size)))))
2013-07-13 16:37:49 +04:00
; Create an instance of fish%
(define charlie
(new fish% [size 10]))
; Use "send" to call an object's methods
(send charlie grow 6)
(send charlie get-size) ; => 16
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-15 06:44:48 +04:00
;; 9. Macros
2013-07-11 15:45:38 +04:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2013-07-14 15:59:16 +04:00
; Macros let you extend the syntax of the language
2013-07-16 02:51:38 +04:00
; Let's add a while loop
(define-syntax-rule (while condition body ...)
(let loop ()
(when condition
body ...
(loop))))
(let ([i 0])
(while (< i 10)
(displayln i)
(set! i (add1 i))))
2013-07-15 06:44:48 +04:00
; Macros are hygienic, you cannot clobber existing variables!
(define-syntax-rule (swap x y)
(begin
(define tmp x)
(set! x y)
(set! y tmp)))
(define tmp 1)
(define a 2)
(define b 3)
(swap a b)
2013-07-15 06:44:48 +04:00
(printf "tmp = ~a; a = ~a; b = ~a~n" tmp a b) ; tmp is unaffected by swap
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; 10. Contracts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Contracts impose constraints on values exported from modules
(module bank-account racket
(provide (contract-out
[deposit (-> positive? any)] ; amount will always be a positive number
[balance (-> positive?)]))
(define amount 0)
(define (deposit a) (set! amount (+ amount a)))
(define (balance) amount)
)
(require 'bank-account)
(deposit 5)
(balance) ; => 5
; Any client that attempt to deposit a non-positive amount, will be blamed
; (deposit -5) ; => deposit: contract violation
; expected: positive?
; given: -5
; more details....
2013-07-11 15:45:38 +04:00
```
2013-07-13 16:37:49 +04:00
## Further Reading
2013-07-11 15:45:38 +04:00
Still up for more? Try [Quick: An Introduction to Racket with Pictures](http://docs.racket-lang.org/quick/)