Skip to content

Instantly share code, notes, and snippets.

View charlesetc's full-sized avatar
🪁
Flying kites in NYC

Charles Chamberlain charlesetc

🪁
Flying kites in NYC
View GitHub Profile
" Note: Skip initialization for vim-tiny or vim-small.
if 0 | endif
if has('vim_starting')
if &compatible
set nocompatible " Be iMproved
endif
" Required:
# node.jl
# A Node Type
# with a name
# and a list of children
type Node
name :: Char
children :: Array{Node}
Node(n) = new(n, [])
Node(a, b) = new(a, b)
Shoes.app title: 'Button Test' do
stack do
banner 'Banner', align: 'center'
button 'Button', align: 'center' do
exit
end