From ba1d302da76fe03b7f39e2b1a5ef19eb734b0fdb Mon Sep 17 00:00:00 2001 From: Rhed Shi Date: Tue, 13 Oct 2015 22:22:12 -0700 Subject: [PATCH 1/5] Made Swift consistent with other Hello World --- s/swift.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s/swift.swift b/s/swift.swift index 7dc46d6e..ad35e5ae 100644 --- a/s/swift.swift +++ b/s/swift.swift @@ -1 +1 @@ -print("Hello, world") +print("Hello World") From 401f17b61f025e89de95ac8233340d05c50dbd03 Mon Sep 17 00:00:00 2001 From: Rhed Shi Date: Wed, 14 Oct 2015 01:16:00 -0700 Subject: [PATCH 2/5] Revert Objective-C back to using NSLog() --- o/objc.m | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/o/objc.m b/o/objc.m index d53547e1..a13e1b7a 100644 --- a/o/objc.m +++ b/o/objc.m @@ -10,12 +10,5 @@ int main(void) { - @autoreleasepool - { - NSFileHandle *_stderr = [NSFileHandle fileHandleWithStandardError]; - NSString *string = @"hello, world\n"; - NSData *data = [string dataUsingEncoding:[NSString defaultCStringEncoding]]; - [_stderr writeData:data]; - } - return EXIT_SUCCESS; -} \ No newline at end of file + NSLog(@"Hello World"); +} From fc5626ef6ca981ff11c3ea94f3b1caf5b3431f6d Mon Sep 17 00:00:00 2001 From: Salvatore Gentile Date: Sun, 25 Oct 2015 22:39:12 +0100 Subject: [PATCH 3/5] Add fish --- f/fish.fish | 2 ++ 1 file changed, 2 insertions(+) create mode 100755 f/fish.fish diff --git a/f/fish.fish b/f/fish.fish new file mode 100755 index 00000000..b5052017 --- /dev/null +++ b/f/fish.fish @@ -0,0 +1,2 @@ +#!/usr/bin/env fish +echo "Hello, World!" From 1801915d8cc6dab468fdcfa55ab7a76a1bdb381f Mon Sep 17 00:00:00 2001 From: OriginalTabooo Date: Tue, 27 Oct 2015 18:35:32 -0500 Subject: [PATCH 4/5] Create assembler_lc-3 LC-3 Assembly Language --- a/assembler_lc-3 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 a/assembler_lc-3 diff --git a/a/assembler_lc-3 b/a/assembler_lc-3 new file mode 100644 index 00000000..ea7d2439 --- /dev/null +++ b/a/assembler_lc-3 @@ -0,0 +1,6 @@ + .ORIG x3000 + + LEA R0, HELLOWORLD + PUTS + +HELLOWORLD .STRINGZ "Hello world!\n" From 4d15b768462a9c54a57372d9a4730e4cf5975e73 Mon Sep 17 00:00:00 2001 From: Sam Tebbs Date: Fri, 30 Oct 2015 01:22:41 +0000 Subject: [PATCH 5/5] Updated for syntax changes --- a/ash.ash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/a/ash.ash b/a/ash.ash index 696a5a5d..a1d9bad5 100644 --- a/a/ash.ash +++ b/a/ash.ash @@ -1,5 +1,5 @@ public class Ash { - public static void main(args : String[]) { + public static func main(args : [String]) { println("Hello, world!") } }