comparison src/luan/modules/http/tools/Shell.luan @ 1293:007ceb8dcf89

minor
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 06 Jan 2019 14:09:24 -0700
parents 5ba660381bd5
children 9dca1e912658
comparison
equal deleted inserted replaced
1292:a6892dcf5659 1293:007ceb8dcf89
1 local Luan = require "luan:Luan.luan" 1 local Luan = require "luan:Luan.luan"
2 local error = Luan.error 2 local error = Luan.error
3 local ipairs = Luan.ipairs or error()
4 local load = Luan.load or error() 3 local load = Luan.load or error()
5 local to_string = Luan.to_string or error() 4 local to_string = Luan.to_string or error()
6 local try = Luan.try or error() 5 local try = Luan.try or error()
7 local String = require "luan:String.luan" 6 local String = require "luan:String.luan"
8 local concat = String.concat or error() 7 local concat = String.concat or error()
101 <html> 100 <html>
102 <head> 101 <head>
103 <title>Luan Shell</title> 102 <title>Luan Shell</title>
104 <style> 103 <style>
105 body { 104 body {
106 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 105 font-family: sans-serif;
107 margin: 2em 5% 0 5%; 106 margin: 2em 5% 0 5%;
108 } 107 }
109 pre { 108 pre {
110 font: inherit; 109 font: inherit;
111 } 110 }