websites.factorcode: add examples
parent
06684f0414
commit
5b60d592c0
|
@ -0,0 +1,57 @@
|
||||||
|
USING: io math sequences ;
|
||||||
|
|
||||||
|
"Hello world" print
|
||||||
|
10 [ "Hello, Factor" print ] times
|
||||||
|
"Hello, " "Factor" append print
|
||||||
|
----
|
||||||
|
USING: io kernel sequences
|
||||||
|
http.client xml xml.data xml.traversal ;
|
||||||
|
|
||||||
|
"http://factorcode.org" http-get nip string>xml
|
||||||
|
"a" deep-tags-named
|
||||||
|
[ "href" attr ] map
|
||||||
|
[ print ] each
|
||||||
|
----
|
||||||
|
USING: accessors kernel math math.constants
|
||||||
|
math.functions prettyprint ;
|
||||||
|
IN: shapes
|
||||||
|
|
||||||
|
TUPLE: circle radius ;
|
||||||
|
TUPLE: rectangle width height ;
|
||||||
|
|
||||||
|
GENERIC: area ( shape -- area )
|
||||||
|
M: circle area radius>> sq pi * ;
|
||||||
|
M: rectangle area [ width>> ] [ height>> ] bi * ;
|
||||||
|
|
||||||
|
rectangle new 10 >>width 20 >>height area .
|
||||||
|
----
|
||||||
|
USING: accessors smtp ;
|
||||||
|
|
||||||
|
<email>
|
||||||
|
"john@foobar.com" >>from
|
||||||
|
{ "jane@foobar.com" } >>to
|
||||||
|
"Up for lunch?" >>subject
|
||||||
|
"At Tracy's." >>body
|
||||||
|
send-email
|
||||||
|
----
|
||||||
|
USING: io.files io.encodings.utf8 kernel
|
||||||
|
sequences splitting ;
|
||||||
|
|
||||||
|
"table.txt" utf8 [
|
||||||
|
file-lines
|
||||||
|
[ "|" split ] map flip [ "|" join ] map
|
||||||
|
] 2keep
|
||||||
|
set-file-lines
|
||||||
|
----
|
||||||
|
USING: sequences xml.syntax xml.writer ;
|
||||||
|
|
||||||
|
{ "three" "blind" "mice" }
|
||||||
|
[ [XML <li><-></li> XML] ] map
|
||||||
|
[XML <ul><-></ul> XML]
|
||||||
|
pprint-xml
|
||||||
|
----
|
||||||
|
USING: inspector io.files.info io.pathnames system tools.files ;
|
||||||
|
|
||||||
|
home directory.
|
||||||
|
home file-system-info free-space>> .
|
||||||
|
image file-info describe
|
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
<pre>
|
<pre>
|
||||||
<%
|
<%
|
||||||
"/var/www/factorcode.org/newsite/examples.txt" utf8 file-lines
|
"resource:extra/websites/factorcode/examples.txt" utf8 file-lines
|
||||||
{ "----" } split random "\n" join write
|
{ "----" } split random "\n" join write
|
||||||
%>
|
%>
|
||||||
</pre>
|
</pre>
|
||||||
|
|
Loading…
Reference in New Issue