annotate examples/maths/Inf.java @ 2:74cc9e431818

Revert change to MidiSynth
author samer
date Fri, 05 Apr 2019 16:43:56 +0100
parents 5df24c91468d
children
rev   line source
samer@1 1 import samer.core.*;
samer@1 2
samer@1 3 public class Inf {
samer@1 4 public static void test() {
samer@1 5 double x=Math.log(0);
samer@1 6 int n=(int)x;
samer@1 7 Shell.print("x="+x+", n="+n);
samer@1 8 }
samer@1 9 }