Merge pull request #1 from leachim6/master

Keep fork up to date
This commit is contained in:
George Gibson
2015-11-03 07:15:43 +00:00
5 changed files with 12 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
public class Ash {
public static void main(args : String[]) {
public static func main(args : [String]) {
println("Hello, world!")
}
}

6
a/assembler_lc-3 Normal file
View File

@@ -0,0 +1,6 @@
.ORIG x3000
LEA R0, HELLOWORLD
PUTS
HELLOWORLD .STRINGZ "Hello world!\n"

2
f/fish.fish Executable file
View File

@@ -0,0 +1,2 @@
#!/usr/bin/env fish
echo "Hello, World!"

View File

@@ -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;
}
NSLog(@"Hello World");
}

View File

@@ -1 +1 @@
print("Hello, world")
print("Hello World")