# This file is part of NIT ( http://www.nitlanguage.org ). # # 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 plus_0x10(v: Byte): Byte `{ return v + 0x10; `} fun print_ns(s: CString) `{ 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 plus_0x10(0x2u8) print_ns("hello world".to_cstring)