about summary refs log tree commit diff stats
path: root/409print-float-hex.mu
Commit message (Expand)AuthorAgeFilesLines
* 7294Kartik Agaram2020-11-281-0/+196
ik.com> 2018-06-17 16:10:00 -0700 4263' href='/akkartik/mu/commit/018constant.cc?h=main&id=92a3d0824b37e564f3d5bb7e042f97f991f25416'>92a3d082 ^
dd660682 ^


01ce563d ^

dd660682 ^



92a3d082 ^
dd660682 ^









dd660682 ^
01ce563d ^

dd660682 ^



92a3d082 ^
dd660682 ^









01ce563d ^


92a3d082 ^


01ce563d ^



92a3d082 ^
01ce563d ^









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
62
63

                            

                                                                                


                                        

          



                        
                                               









                                                                    
 

           



                         
                                                









                                                                     


          


                                        



                               
                                               









                                                                    
//: A few literal constants.

:(scenarios load)  // use 'load' instead of 'run' in all scenarios in this layer

:(before "End Mu Types Initialization")
put(Type_ordinal, "literal-boolean", 0);

//: 'true'

:(scenario true)
def main [
  1:boolean <- copy true
]
+parse:   ingredient: {true: "literal-boolean"}

:(before "End Parsing reagent")
if (name == "true") {
  if (type != NULL) {
    raise << "'true' is a literal and can't take a type\n" << end();
    return;
  }
  type = new type_tree("literal-boolean");
  set_value(1);
}

//: 'false'

:(scenario false)
def main [
  1:boolean <- copy false
]
+parse:   ingredient: {false: "literal-boolean"}

:(before "End Parsing reagent")
if (name == "false") {
  if (type != NULL) {
    raise << "'false' is a literal and can't take a type\n" << end();
    return;
  }
  type = new type_tree("literal-boolean");
  set_value(0);
}

//: 'null'

:(before "End Mu Types Initialization")
put(Type_ordinal, "literal-address", 0);

:(scenario null)
def main [
  1:address:number <- copy null
]
+parse:   ingredient: {null: "literal-address"}

:(before "End Parsing reagent")
if (name == "null") {
  if (type != NULL) {
    raise << "'null' is a literal and can't take a type\n" << end();
    return;
  }
  type = new type_tree("literal-address");
  set_value(0);
}