Numerical integration: Difference between revisions

m
(added FreeBasic example)
m (→‎{{header|FreeBASIC}}: added some info)
Line 1,668:
end module FunctionHolder</lang>
=={{header|FreeBASIC}}==
Based on the BASIC entry and the BBC BASIC entry
<lang freebasic>' version 17-09-2015
' compile with: fbc -s console
 
#Define screen_width 1024
#Define screen_height 256
ScreenRes screen_width, screen_height, 8
Width screen_width\8, screen_height\16
457

edits