-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmetaL.ini
61 lines (47 loc) · 1.16 KB
/
metaL.ini
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
60
61
# metaL : homoiconic metaprogramming system
# system startup file
WEB
BYE
class Frame
class Primitive
class Container
class Active
class VM
??
BYE
`files def \\ file structure
file hico.py // \ Python implementation
file hico.ini // \ metacircular HICO def
file Makefile // \ build scripts
file README.md //
file .gitignore // \ not git-tracked files
drop
`eclipse def >> files \\ Eclipse project
eclipse
file .project // \ main project def
file .pydevproject // \ PyDev specifics
drop
dir .externalToolBuilders
file linux.launch // \ run GNU Make in Linux
>> eclipse
dir .settings
file org.eclipse.core.runtime.prefs //
file org.eclipse.core.resources.prefs //
>> eclipse
`vim def \\ (g)Vim helpers
file rc.rc // \ run gvim in Linux
file bat.bat // \ run gvim in Windows
file ftdetect.vim // \ define .ini & .src types
file syntax.vim // \ define custom syntax
>> files
files ?? REPL
class Frame
super Primitive
super Symbol drop
super String
\ class Symbol super Primitive
\ class String super Primitive
\ class Number super Primitive
\ class Integer super Number
\ class Hex super Integer
\ class Bin super Integer