racket-lang.orgRacket

racket-lang.org Profile

racket-lang.org is a domain that was created on 2010-03-29,making it 14 years ago. It has several subdomains, such as download.racket-lang.org docs.racket-lang.org , among others.

Discover racket-lang.org website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

racket-lang.org Information

HomePage size: 47.311 KB
Page Load Time: 0.086746 Seconds
Website IP Address: 104.21.48.235

racket-lang.org Similar Website

Racket Sports by HiveFly
rackets.hivefly.com
Racket Documentation
docs.racket-lang.org

racket-lang.org PopUrls

Racket Research
https://racket-lang.org/learning.html
PLT-TR-2010-3
https://racket-lang.org/tr3/
pict3d
https://pkgs.racket-lang.org/package/pict3d
Racket Package Index
https://pkgs.racket-lang.org/
dracula
https://pkgs.racket-lang.org/package/dracula
herbie
https://pkgs.racket-lang.org/package/herbie
Download Racket
https://download.racket-lang.org/
clang
https://pkgs.racket-lang.org/package/clang
envy
https://pkgs.racket-lang.org/package/envy
Racket
https://racket-lang.org/
The Racket Guide
https://docs.racket-lang.org/guide/
Racket Documentation
https://docs.racket-lang.org/
1 Welcome to Racket
https://docs.racket-lang.org/guide/intro.html
Download Racket
https://racket-lang.org/download/
The Racket Reference
https://docs.racket-lang.org/reference/index.html

racket-lang.org DNS

A racket-lang.org. 300 IN A 104.21.48.235
AAAA racket-lang.org. 300 IN AAAA 2606:4700:3036::6815:30eb
MX racket-lang.org. 300 IN MX 0 aspmx.l.google.com.
NS racket-lang.org. 21600 IN NS clyde.ns.cloudflare.com.
TXT racket-lang.org. 300 IN TXT v=spf1 include:_spf.google.com ?all
SOA racket-lang.org. 1800 IN SOA clyde.ns.cloudflare.com. dns.cloudflare.com. 2338172474 10000 2400 604800 1800

racket-lang.org Httpheader

Date: Tue, 14 May 2024 18:57:48 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
x-amz-id-2: mcdokLiWg8fRMHbJxviIETRaUs1tRFYY5UCOocDXRs/jOLnXiIkQrqFtTSBGD9vOnJC0fY+tTZg=
x-amz-request-id: 8CDYVP3X05T4FF2D
Cache-Control: max-age=0, no-cache
Last-Modified: Sat, 10 Feb 2024 07:03:53 GMT
x-amz-storage-class: REDUCED_REDUNDANCY
CF-Cache-Status: DYNAMIC
Report-To: "endpoints":["url":"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=8o2qx%2B3TRXApTKjdU6Ck2iBRiBvmhuguIqLd73KvT3k12820p15v%2FPkemYCYE0YjP84rYn2zecLryPWWmkM88V8lm8vwQEcXrHPjFBtClN3mEtNHAi2yB2lEioX6%2Bx6TSLnqV2KkntlHPZ1MifU%3D"],"group":"cf-nel","max_age":604800
NEL: "success_fraction":0,"report_to":"cf-nel","max_age":604800
Server: cloudflare
CF-RAY: 883d1db2992b9467-LHR
alt-svc: h3=":443"; ma=86400

racket-lang.org Meta Info

charset="utf-8"/
content="width=device-width, initial-scale=1.0" name="viewport"/

racket-lang.org Html To Plain Text

donate docs packages download version 8.12 is available. Con 2023 videos , the Programming Language #lang racket/gui ( define my-language ’English) ( define translations #hash([Chinese . "你好 世界"] [English . "Hello world"] [French . "Bonjour le monde"] [German . "Hallo Welt"] [Greek . "Γειά σου, κόσμε"] [Portuguese . "Olá mundo"] [Spanish . "Hola mundo"] [Thai . "สวัสดีชาวโลก"] [Turkish . "Merhaba Dünya"])) ( define my-hello-world ( hash-ref translations my-language "hello world")) ( message-box "" my-hello-world) Mature is a mature and stable product. From the beginning, it has supported cross-platform graphical programming (Windows, macOS, Linux). Package System GUI Framework Standalone Binaries Foreign Interface Practical includes a rich set of libraries, covering the full range from web server apps to mathematics and scientific simulation software. Web Applications Database Math & Statistics Full List → Extensible In , programmers define their own loops with powerful macros . Indeed, these macros are so powerful that programmers make entire domain-specific languages as libraries. No tools, no Makefiles required. Intro To Macros Macros In Depth Making New Languages Sample #Langs Robust is the first language to support higher-order software contracts and safe gradual typing . Programmers can easily deploy these tools to harden their software. The Contract Guide High-Order Contracts The Typed Guide Gradual Typing Polished comes with support for major editors. The main bundle includes an innovative and extensible interactive development environment that has inspired other IDE projects. Dr Guide VS Code/Magic Emacs Integration Vim Integration , the Language-Oriented Programming Language #lang typed/racket ;; Using higher-order occurrence typing ( define-type SrN ( U String Number )) ( : tog (( Listof SrN) - String )) ( define (tog l) ( apply string-append ( filter string? l))) (tog ( list 5 "hello " 1/2 "world" ( sqrt -1))) #lang scribble/base @; Generate a PDF or HTML document @( require ( only-in racket ~a)) @( define N 99) @ title {Bottles: @ italic {Abridged}} @( apply itemlist ( for/list ([n ( in-range N 0 -1)]) @ item {@( ~a n) bottles.})) #lang datalog ancestor(A, B) :- parent(A, B). ancestor(A, B) :- parent(A, C), ancestor(C, B). parent(john, douglas). parent(bob, john). ancestor(A, B)? Little Macros #lang racket ( provide time-it) ( require ( for-syntax syntax/parse)) ( define-syntax (time-it stx) ( syntax-parse stx [(_ task) #’(thunk-time-it ( λ () task))])) ( define (thunk-time-it task) ( define before (cim)) ( define answer (task)) ( define delta (- (cim) before)) ( printf "time: ~a ms\n" delta) answer) ( define cim current-inexact-milliseconds) allows programmers to add new syntactic constructs in the same way that other languages permit the formulation of procedures, methods, or classes. All you need to do is formulate a simple rule that rewrites a custom syntax to a expression or definition. Little macros can particularly help programmers with DRY where other features can’t. The example on the left above shows how to define a new syntax for measuring the time a task takes. The syntax avoids the repeated use of lambda. Note also how the macro is exported from this module as if it were an ordinary function. General Purpose #lang racket/gui ;; let’s play a guessing game ( define frame ( new frame% [label "Guess"])) ( define secret ( random 5)) ( define ((check i) btn evt) ( define found? ( if ( = i secret) "Yes" "No")) ( message-box "?" found?) ( when ( = i secret) ( send frame show #false))) ( for ([i ( in-range 5)]) ( new button% [label ( ~a i)] [parent frame] [callback (check i)])) ( send frame show #t) comes with a comprehensive suite of libraries: a cross-platform GUI toolbox , a web server , and more. Thousands of additional packages are a single command away: 3D graphics, a bluetooth socket connector, color maps, data structures, educational software, games, a quantum-random number generator, scientific simulations, web script testing, and many more. Macros work with these tools. The example on the left above shows the implementation of a small number-guessing game. It is implemented in the GUI dialect of , and demonstrates a number of language features. Big Macros Getting to know the full macro system will feel liberating, empowering, dazzling—like a whole new level of enlightenment. Developers can easily create a collection of co-operating macros to implement algebraic pattern matching , simple event-handling , or a logic-constraint solver . While is a functional language, it has offered a sub-language of classes and objects, mixins and traits , from the beginning. The macro-based implementation of a Java-like class system lives in a library and does not need any support from the core language. A programmer can thus combine functional with object-oriented components as needed. Easy DSLs Some languages convey ideas more easily than others. And some programming languages convey solutions better than others. Therefore is a language for making languages , so that a programmer can write every module in a well-suited language. Often an application domain comes with several languages. When you need a new language, you make it—on the fly. Open an IDE window; create a language right there, with just a few keystrokes; and run a module in this new language in a second IDE window. Making new languages really requires no setup, no project files, no external tools, no nothing. IDE Support comes with its own IDE, Dr ( née DrScheme ), and it sports some unique features. For example, when a programmer mouses over an identifier, the IDE draws an arrow back to where it was defined. A programmer immediately benefits from Dr while using an alternative language, say Typed . macros, even complex ones and those used to make new languages, record and propagate a sufficient amount of source information for Dr to act as if it understood the features of the new language. Any Syntax programmers usually love parentheses, but they have empathy for those who need commas and braces. Hence, building languages with conventional surface syntax, like that of datalog , is almost as easy as building parenthetical languages. ’s ecosystem comes with parsing packages that allow developers to easily map any syntax to a parenthesized language, which is then compiled to ordinary with the help of ’s macro system. Such a language can also exploit the hooks of the IDE framework, so that its programmers may take advantage of ’s IDE. , the Ecosystem Software Software Download Source Code Bug Reports Nightly Snapshot Builds Packages Tutorials & Documentation Tutorials & Documentation Quick Introduction Systems Programming The Guide The Reference Web Applications All Documentation Community Community Discourse and Discord These are the most active places for eers. Slack ( sign up ), IRC , Reddit , and Mailing lists eers are here, too! Mastodon , Twitter , and Blog Keep in touch. Wiki and YouTube Learn more from articles and talks. Team and Contributing ’s development benefits from a large distributed pool of contributors. Friendly Environment Policy Applies to all venues. Software Freedom Conservancy Make a tax-deductible contribution to support our work. Books Books Realm of Learn to program with , one game at a time. Beautiful Make your own programming languages with . Server: Develop a web application with . All Books Education Education The Summer School a summer school for researchers, professionals, and (under)graduate students to the philosophy of programming languages Program by Design (aka TeachScheme!) a curriculum and training program for high school teachers and college faculty Bootstrap a curriculum and training program for middle-school and high-school teachers Swag Swag T-Shirts — the perfect way to meet friends, influence people, and stay warm. Stickers — the indispensable accessory for laptops and textbooks. Thank you To the NSF , DARPA , the Fund for the...

racket-lang.org Whois

Domain Name: racket-lang.org Registry Domain ID: 2c9d7ebf68c9454ebfbc1112081a3aec-LROR Registrar WHOIS Server: whois.squarespace.domains Registrar URL: https://domains.squarespace.com Updated Date: 2023-12-08T16:42:00Z Creation Date: 2010-03-29T05:06:21Z Registry Expiry Date: 2025-03-29T05:06:21Z Registrar: Squarespace Domains II LLC Registrar IANA ID: 895 Registrar Abuse Contact Email: abuse-complaints@squarespace.com Registrar Abuse Contact Phone: +1.6466935324 Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Registrant Organization: Contact Privacy Inc. Customer 7151571251 Registrant State/Province: ON Registrant Country: CA Name Server: clyde.ns.cloudflare.com Name Server: kate.ns.cloudflare.com DNSSEC: unsigned >>> Last update of WHOIS database: 2024-05-17T20:57:50Z <<<