From ccf46fa811f0c51ea23162cef1cbcad5ecd37878 Mon Sep 17 00:00:00 2001 From: Stevan Andjelkovic Date: Wed, 4 Jan 2012 00:07:20 +0100 Subject: More make file fixes --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2cb3b30..d7551bf 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ MANDIR= ${PREFIX}/man/man CLEANFILES += ${.CURDIR}/javascript.h xxxterm.cat1 xxxterm.core -${.CURDIR}/javascript.h: hinting.js input-focus.js +${.CURDIR}/javascript.h: hinting.js input-focus.js autoscroll.js perl ${.CURDIR}/js-merge-helper.pl ${.CURDIR}/hinting.js \ ${.CURDIR}/input-focus.js ${.CURDIR}/autoscroll.js \ > ${.CURDIR}/javascript.h -- cgit 1.4.1-2-gfad0 s.form.submit();'> Soul of a tiny new machine. More thorough tests → More comprehensible and rewrite-friendly software → More resilient society.Kartik K. Agaram <vc@akkartik.com>
about summary refs log blame commit diff stats
path: root/apps/hello.mu
blob: a305edf066ed4f0bd7e5d68f87c5cee78fbe3cf0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                   
# Meaningless conventional example.
#
# To run:
#   $ ./translate_mu apps/hello.mu
#   $ ./a.elf

fn main -> exit-status/ebx: int {
  print-string 0, "Hello world!\n"
  exit-status <- copy 0
}