about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--coffee/starfish.coffee5
-rw-r--r--p9c/notes.md1
2 files changed, 4 insertions, 2 deletions
diff --git a/coffee/starfish.coffee b/coffee/starfish.coffee
index bfd5f44..7f63720 100644
--- a/coffee/starfish.coffee
+++ b/coffee/starfish.coffee
@@ -1,4 +1,5 @@
 square = (x) -> x * x
-cube   = (x) -> square(x) * x
+cube   = (x) -> square x * x
+
+console.log cube 33
 
-console.log cube(33)
diff --git a/p9c/notes.md b/p9c/notes.md
index aef41f6..b3c6d00 100644
--- a/p9c/notes.md
+++ b/p9c/notes.md
@@ -6,6 +6,7 @@ http://doc.cat-v.org/plan_9/programming/c_programming_in_plan_9
 http://blog.postnix.pw/2018/09/21/0/
 http://sdf.org/?tutorials/Plan_9_C
 https://9fans.github.io/plan9port/man/man3/intro.html
+https://github.com/nspool/hello-plan9
 
 general:
 
class='alt'>
c912b731 ^
f0cf7af7 ^

34514ae8 ^
f0cf7af7 ^
ecbdc925 ^
f0cf7af7 ^

c912b731 ^


a232af2f ^
11f7f7b8 ^
c912b731 ^
11f7f7b8 ^
5763322b ^
5763322b ^
11f7f7b8 ^
5763322b ^
11f7f7b8 ^

5763322b ^
11f7f7b8 ^
f898ee7a ^
11f7f7b8 ^
c912b731 ^





a232af2f ^
11f7f7b8 ^

5763322b ^


f0f16bdf ^
c912b731 ^
5763322b ^
c912b731 ^
53172ce1 ^
ecbdc925 ^
a232af2f ^


11f7f7b8 ^
c912b731 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59