[rebuttal] printf in other languages

This commit is contained in:
Ben Greenman 2016-05-03 02:22:48 -04:00
parent 5cd1971004
commit e4cc578b5e
5 changed files with 37 additions and 0 deletions

6
icfp-2016/src/.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
*.hi
*.hs
*.cmi
*.cmo
*.out
*.class

View File

@ -0,0 +1,8 @@
public class Printf {
public static void main(String[] args) {
A a = new A();
System.out.printf("yolo %d\n", a);
}
}
class A {}

View File

@ -0,0 +1,13 @@
printf
===
#### What languages have type safe printf?
- gcc (warning)
- ocaml (warning for missing args, error for wrong type)
#### What languages fail at runtime?
- Java (alt: string builder)
- Scala (alt: scala macros)
- Haskell (alt: [Formatting](http://chrisdone.com/posts/formatting) package)
- Python

View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("yo %d", "lo");
return 0;
}

View File

@ -0,0 +1,4 @@
let _ =
Format.printf "yo %d\n";
Format.printf "yo %d\n" "lo";
()