# This file is part of NIT ( http://www.nitlanguage.org ). # # Copyright 2011-2013 Alexis Laferrière # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. fun opposite( v : Bool ) : Bool `{ return v == 0; `} fun plus_10( v : Char ) : Char `{ return v + 10; `} fun plus_1000( v : Int ) : Int `{ return v + 1000; `} fun multiply_by_100( v : Float ) : Float `{ return v * 100; `} fun print_ns( s : NativeString ) `{ printf( "%s\n", s ); `} print opposite( true ) print opposite( false ) print plus_10( 'a' ) print plus_1000( 1234 ) print multiply_by_100( 123.45 ) print_ns( "hello world".to_cstring )