view examples/maths/Inf.java @ 3:15b93db27c04

Get StreamSource to compile, update args for demo
author samer
date Fri, 05 Apr 2019 17:00:18 +0100
parents 5df24c91468d
children
line wrap: on
line source
import samer.core.*;

public class Inf {
	public static void test() {
		double x=Math.log(0);
		int n=(int)x;
		Shell.print("x="+x+", n="+n);
	}
}